summaryrefslogtreecommitdiff
path: root/libcxx/test/libcxx/min_max_macros.compile.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/libcxx/min_max_macros.compile.pass.cpp')
-rw-r--r--libcxx/test/libcxx/min_max_macros.compile.pass.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/libcxx/test/libcxx/min_max_macros.compile.pass.cpp b/libcxx/test/libcxx/min_max_macros.compile.pass.cpp
index 9dd434507ed3..d032e97f1ddc 100644
--- a/libcxx/test/libcxx/min_max_macros.compile.pass.cpp
+++ b/libcxx/test/libcxx/min_max_macros.compile.pass.cpp
@@ -9,11 +9,6 @@
// Test that headers are not tripped up by the surrounding code defining the
// min() and max() macros.
-// Prevent <ext/hash_map> from generating deprecated warnings for this test.
-#if defined(__DEPRECATED)
-# undef __DEPRECATED
-#endif
-
#define TEST_MACROS() static_assert(min() == true && max() == true, "")
#define min() true
#define max() true
@@ -398,8 +393,4 @@ TEST_MACROS();
# include <experimental/vector>
TEST_MACROS();
#endif
-#include <ext/hash_map>
-TEST_MACROS();
-#include <ext/hash_set>
-TEST_MACROS();
// GENERATED-MARKER