Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago <tiagomacarios@users.noreply.github.com>2017-11-28 18:13:49 +0300
committerNeil MacIntosh <neilmac@microsoft.com>2017-11-28 18:13:49 +0300
commit0d33bf6794765311d4bdac68e1f6584108f011bf (patch)
tree21aea93c3fe54937cac6beac8c8f6a84331690cb /tests/string_span_tests.cpp
parent1c95f9436eae69c9b9315911ef6aa210df7d1e31 (diff)
Applied iwyu --comment to the code base (#588)
Diffstat (limited to 'tests/string_span_tests.cpp')
-rw-r--r--tests/string_span_tests.cpp22
1 files changed, 13 insertions, 9 deletions
diff --git a/tests/string_span_tests.cpp b/tests/string_span_tests.cpp
index 823b19d..83171ac 100644
--- a/tests/string_span_tests.cpp
+++ b/tests/string_span_tests.cpp
@@ -14,15 +14,19 @@
//
///////////////////////////////////////////////////////////////////////////////
-#include <catch/catch.hpp>
-
-#include <gsl/gsl> //owner
-#include <gsl/string_span>
-
-#include <algorithm>
-#include <cstdlib>
-#include <map>
-#include <vector>
+#include <catch/catch.hpp> // for AssertionHandler, StringRef, CHECK, TEST_...
+
+#include <gsl/gsl_assert> // for Expects, fail_fast (ptr only)
+#include <gsl/pointers> // for owner
+#include <gsl/span> // for span, dynamic_extent
+#include <gsl/string_span> // for basic_string_span, operator==, ensure_z
+
+#include <algorithm> // for move, find
+#include <cstddef> // for size_t
+#include <map> // for map
+#include <string> // for basic_string, string, char_traits, operat...
+#include <type_traits> // for remove_reference<>::type
+#include <vector> // for vector, allocator
using namespace std;
using namespace gsl;