diff options
Diffstat (limited to 'libcxx/test/support/min_allocator.h')
-rw-r--r-- | libcxx/test/support/min_allocator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/support/min_allocator.h b/libcxx/test/support/min_allocator.h index 5e3ae5d2a13..68cde7917a2 100644 --- a/libcxx/test/support/min_allocator.h +++ b/libcxx/test/support/min_allocator.h @@ -40,7 +40,7 @@ public: }; -#if __cplusplus >= 201103L +#if TEST_STD_VER >= 11 #include <memory> @@ -286,6 +286,6 @@ public: friend bool operator!=(min_allocator x, min_allocator y) {return !(x == y);} }; -#endif // __cplusplus >= 201103L +#endif // TEST_STD_VER >= 11 #endif // MIN_ALLOCATOR_H |