From de10be85603786960cc69bb8fe289b5a77911a42 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 9 Aug 2014 12:28:28 +0300 Subject: [PATCH] Fix sp_nullptr_test for compilers that don't define std::nullptr_t. --- test/sp_nullptr_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/sp_nullptr_test.cpp b/test/sp_nullptr_test.cpp index a1779bb..1b3965c 100644 --- a/test/sp_nullptr_test.cpp +++ b/test/sp_nullptr_test.cpp @@ -9,6 +9,7 @@ // #include +#include #include #include #include @@ -37,7 +38,7 @@ private: int X::instances = 0; -void f( std::nullptr_t ) +void f( boost::detail::sp_nullptr_t ) { }