12345678910111213141516171819202122232425 |
- #ifndef BOOST_DETAIL_PROPERTY_HPP
- #define BOOST_DETAIL_PROPERTY_HPP
- #include <utility> // for std::pair
- #include <boost/type_traits/same_traits.hpp> // for is_same
- namespace boost
- {
- namespace detail
- {
- struct error_property_not_found
- {
- };
- }
- }
- #endif
|