diff options
Diffstat (limited to 'libcxxabi/test/catch_pointer_nullptr.pass.cpp')
-rw-r--r-- | libcxxabi/test/catch_pointer_nullptr.pass.cpp | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/libcxxabi/test/catch_pointer_nullptr.pass.cpp b/libcxxabi/test/catch_pointer_nullptr.pass.cpp index b969119b0d8..7caee7b3aa0 100644 --- a/libcxxabi/test/catch_pointer_nullptr.pass.cpp +++ b/libcxxabi/test/catch_pointer_nullptr.pass.cpp @@ -7,17 +7,13 @@ // //===----------------------------------------------------------------------===// +// UNSUPPORTED: c++98, c++03 + #include <cassert> #include <cstdlib> -#ifndef __has_feature -#define __has_feature(x) 0 -#endif - struct A {}; -#if __has_feature(cxx_nullptr) - void test1() { try @@ -62,22 +58,6 @@ void catch_nullptr_test() { } } -#else - -void test1() -{ -} - -void test2() -{ -} - -template <class Catch> -void catch_nullptr_test() -{ -} - -#endif int main() { |