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/at_tests.cpp
parent1c95f9436eae69c9b9315911ef6aa210df7d1e31 (diff)
Applied iwyu --comment to the code base (#588)
Diffstat (limited to 'tests/at_tests.cpp')
-rw-r--r--tests/at_tests.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/tests/at_tests.cpp b/tests/at_tests.cpp
index 78e8e3d..2f9e999 100644
--- a/tests/at_tests.cpp
+++ b/tests/at_tests.cpp
@@ -14,12 +14,18 @@
//
///////////////////////////////////////////////////////////////////////////////
-#include <catch/catch.hpp>
+#include <catch/catch.hpp> // for AssertionHandler, StringRef, CHECK_THROW...
-#include <gsl/gsl>
+#include <gsl/gsl_util> // for at
-#include <initializer_list>
-#include <vector>
+#include <array> // for array
+#include <cstddef> // for size_t
+#include <initializer_list> // for initializer_list
+#include <vector> // for vector
+
+namespace gsl {
+struct fail_fast;
+} // namespace gsl
using gsl::fail_fast;