aboutsummaryrefslogtreecommitdiff
path: root/tests/algorithm_tests.cpp
diff options
context:
space:
mode:
authorTiago <tiagomacarios@users.noreply.github.com>2017-11-28 07:13:49 -0800
committerNeil MacIntosh <neilmac@microsoft.com>2017-11-28 07:13:49 -0800
commit0d33bf6794765311d4bdac68e1f6584108f011bf (patch)
tree21aea93c3fe54937cac6beac8c8f6a84331690cb /tests/algorithm_tests.cpp
parent1c95f9436eae69c9b9315911ef6aa210df7d1e31 (diff)
downloadMicrosoft-GSL-0d33bf6794765311d4bdac68e1f6584108f011bf.tar.gz
Applied iwyu --comment to the code base (#588)
Diffstat (limited to 'tests/algorithm_tests.cpp')
-rw-r--r--tests/algorithm_tests.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/algorithm_tests.cpp b/tests/algorithm_tests.cpp
index 045fd3e..388d17d 100644
--- a/tests/algorithm_tests.cpp
+++ b/tests/algorithm_tests.cpp
@@ -14,11 +14,17 @@
//
///////////////////////////////////////////////////////////////////////////////
-#include <catch/catch.hpp>
+#include <catch/catch.hpp> // for AssertionHandler, StringRef, CHECK, CHE...
-#include <gsl/gsl_algorithm>
+#include <gsl/gsl_algorithm> // for copy
+#include <gsl/span> // for span
-#include <array>
+#include <array> // for array
+#include <cstddef> // for size_t
+
+namespace gsl {
+struct fail_fast;
+} // namespace gsl
using namespace std;
using namespace gsl;