in_place.hpp 847 B

1234567891011121314151617181920212223242526272829303132333435
  1. // MPark.Variant
  2. //
  3. // Copyright Michael Park, 2015-2017
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  7. #ifndef MPARK_IN_PLACE_HPP
  8. #define MPARK_IN_PLACE_HPP
  9. #include <cstddef>
  10. #include "config.hpp"
  11. namespace mpark {
  12. struct in_place_t { explicit in_place_t() = default; };
  13. template <std::size_t I>
  14. struct in_place_index_t { explicit in_place_index_t() = default; };
  15. template <typename T>
  16. struct in_place_type_t { explicit in_place_type_t() = default; };
  17. #ifdef MPARK_VARIABLE_TEMPLATES
  18. constexpr in_place_t in_place{};
  19. template <std::size_t I> constexpr in_place_index_t<I> in_place_index{};
  20. template <typename T> constexpr in_place_type_t<T> in_place_type{};
  21. #endif
  22. } // namespace mpark
  23. #endif // MPARK_IN_PLACE_HPP