aboutsummaryrefslogtreecommitdiff
path: root/tests/span_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/span_tests.cpp
parent1c95f9436eae69c9b9315911ef6aa210df7d1e31 (diff)
downloadMicrosoft-GSL-0d33bf6794765311d4bdac68e1f6584108f011bf.tar.gz
Applied iwyu --comment to the code base (#588)
Diffstat (limited to 'tests/span_tests.cpp')
-rw-r--r--tests/span_tests.cpp30
1 files changed, 19 insertions, 11 deletions
diff --git a/tests/span_tests.cpp b/tests/span_tests.cpp
index bc4666b..b14ddf0 100644
--- a/tests/span_tests.cpp
+++ b/tests/span_tests.cpp
@@ -14,17 +14,25 @@
//
///////////////////////////////////////////////////////////////////////////////
-#include <catch/catch.hpp>
-
-#include <gsl/span>
-
-#include <iostream>
-#include <list>
-#include <map>
-#include <memory>
-#include <regex>
-#include <string>
-#include <vector>
+#include <catch/catch.hpp> // for AssertionHandler, StringRef, CHECK, TEST_...
+
+#include <gsl/gsl_byte> // for byte
+#include <gsl/gsl_util> // for narrow_cast, at
+#include <gsl/span> // for span, span_iterator, operator==, operator!=
+
+#include <array> // for array
+#include <iostream> // for ptrdiff_t
+#include <iterator> // for reverse_iterator, operator-, operator==
+#include <memory> // for unique_ptr, shared_ptr, make_unique, allo...
+#include <regex> // for match_results, sub_match, match_results<>...
+#include <stddef.h> // for ptrdiff_t
+#include <string> // for string
+#include <type_traits> // for integral_constant<>::value, is_default_co...
+#include <vector> // for vector
+
+namespace gsl {
+struct fail_fast;
+} // namespace gsl
using namespace std;
using namespace gsl;