none_t.hpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Copyright (C) 2003, Fernando Luis Cacciola Carballal.
  2. // Copyright (C) 2014, 2015 Andrzej Krzemienski.
  3. //
  4. // Use, modification, and distribution is subject to the Boost Software
  5. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // See http://www.boost.org/libs/optional for documentation.
  9. //
  10. // You are welcome to contact the author at:
  11. // [email protected]
  12. //
  13. #ifndef BOOST_NONE_T_17SEP2003_HPP
  14. #define BOOST_NONE_T_17SEP2003_HPP
  15. #include <boost/config.hpp>
  16. #include <boost/config/pragma_message.hpp>
  17. #if defined (BOOST_NO_CXX11_RVALUE_REFERENCES) || defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || defined(BOOST_NO_CXX11_REF_QUALIFIERS) \
  18. || defined(BOOST_NO_CXX11_LAMBDAS) || defined(BOOST_NO_CXX11_DECLTYPE_N3276) || defined(BOOST_NO_CXX11_NOEXCEPT) || defined(BOOST_NO_CXX11_DELETED_FUNCTIONS) || defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) || defined(BOOST_NO_CXX11_DEFAULTED_MOVES) || defined(BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS)
  19. BOOST_PRAGMA_MESSAGE("C++03 support is deprecated in Boost.Optional 1.83 and will be removed in Boost.Optional 1.86.")
  20. #endif
  21. namespace boost {
  22. #ifdef BOOST_OPTIONAL_USE_OLD_DEFINITION_OF_NONE
  23. namespace detail { struct none_helper{}; }
  24. typedef int detail::none_helper::*none_t ;
  25. #elif defined BOOST_OPTIONAL_USE_SINGLETON_DEFINITION_OF_NONE
  26. class none_t {};
  27. #else
  28. struct none_t
  29. {
  30. struct init_tag{};
  31. explicit BOOST_CONSTEXPR none_t(init_tag){} // to disable default constructor
  32. };
  33. #endif // old implementation workarounds
  34. } // namespace boost
  35. #endif // header guard