diff --git a/include/boost/move/unique_ptr.hpp b/include/boost/move/unique_ptr.hpp index a6839ea..6a95155 100644 --- a/include/boost/move/unique_ptr.hpp +++ b/include/boost/move/unique_ptr.hpp @@ -18,6 +18,10 @@ #include #include +#if !defined(BOOST_NO_CXX11_NULLPTR) +#include //For std::nullptr_t +#endif + //!\file //! Describes the smart pointer unique_ptr, a drop-in replacement for std::unique_ptr, //! usable also from C++03 compilers.