From a9bc0876cd28a9c445e36f6c62a2af6b03ccb710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 23 Aug 2014 00:32:30 +0200 Subject: [PATCH] Added missing cstddef for std::nullptr_t --- include/boost/move/unique_ptr.hpp | 4 ++++ 1 file changed, 4 insertions(+) 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.