enable_if.hpp 466 B

1234567891011121314151617181920212223
  1. #ifndef BOOST_SYSTEM_DETAIL_ENABLE_IF_HPP_INCLUDED
  2. #define BOOST_SYSTEM_DETAIL_ENABLE_IF_HPP_INCLUDED
  3. // Copyright 2020 Peter Dimov
  4. // Distributed under the Boost Software License, Version 1.0
  5. // http://www.boost.org/LICENSE_1_0.txt
  6. #include <type_traits>
  7. namespace boost
  8. {
  9. namespace system
  10. {
  11. namespace detail
  12. {
  13. using std::enable_if;
  14. } // namespace detail
  15. } // namespace system
  16. } // namespace boost
  17. #endif // #ifndef BOOST_SYSTEM_DETAIL_ENABLE_IF_HPP_INCLUDED