1234567891011121314151617181920212223 |
- #ifndef BOOST_SYSTEM_DETAIL_ENABLE_IF_HPP_INCLUDED
- #define BOOST_SYSTEM_DETAIL_ENABLE_IF_HPP_INCLUDED
- #include <type_traits>
- namespace boost
- {
- namespace system
- {
- namespace detail
- {
- using std::enable_if;
- }
- }
- }
- #endif
|