diff options
Diffstat (limited to 'test/std/containers/sequences/array/iterators.pass.cpp')
-rw-r--r-- | test/std/containers/sequences/array/iterators.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/std/containers/sequences/array/iterators.pass.cpp b/test/std/containers/sequences/array/iterators.pass.cpp index 233e9328c4ed..1f9904e1fa71 100644 --- a/test/std/containers/sequences/array/iterators.pass.cpp +++ b/test/std/containers/sequences/array/iterators.pass.cpp @@ -15,6 +15,8 @@ #include <iterator> #include <cassert> +#include "test_macros.h" + int main() { { @@ -36,7 +38,7 @@ int main() assert(i == j); } -#if _LIBCPP_STD_VER > 11 +#if TEST_STD_VER > 11 { // N3644 testing { typedef std::array<int, 5> C; |