Fix a test that was failing in C++11 mode introduced in r303874
authorErik Pilkington <erik.pilkington@gmail.com>
Thu, 25 May 2017 16:16:17 +0000 (16:16 +0000)
committerErik Pilkington <erik.pilkington@gmail.com>
Thu, 25 May 2017 16:16:17 +0000 (16:16 +0000)
llvm-svn: 303878

libcxx/test/libcxx/utilities/memory/util.smartptr/util.smartptr.shared/function_type_default_deleter.fail.cpp

index f50ced0..87cd292 100644 (file)
@@ -1,3 +1,5 @@
+// UNSUPPORTED: c++98, c++03
+
 #include <memory>
 
 template <int> struct Tag {};
@@ -21,7 +23,9 @@ struct Deleter {
   void operator()(Tp) const {
     using RawT = typename std::remove_pointer<Tp>::type;
     static_assert(std::is_function<RawT>::value ||
-                  std::is_null_pointer<RawT>::value, "");
+                  std::is_same<typename std::remove_cv<RawT>::type,
+                               std::nullptr_t>::value,
+                  "");
   }
 };