12345678910111213141516171819202122 |
- #if !defined(BOOST_TTI_DETAIL_NULLPTR_HPP)
- #define BOOST_TTI_DETAIL_NULLPTR_HPP
- #include <boost/config.hpp>
- #if defined(BOOST_NO_CXX11_NULLPTR)
- #define BOOST_TTI_DETAIL_NULLPTR 0
- #else
- #define BOOST_TTI_DETAIL_NULLPTR nullptr
- #endif
- #endif
|