Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:43:31

0001 //  (C) Copyright Jeremy Siek 2004
0002 //  Distributed under the Boost Software License, Version 1.0. (See
0003 //  accompanying file LICENSE_1_0.txt or copy at
0004 //  http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #ifndef BOOST_DETAIL_PROPERTY_HPP
0007 #define BOOST_DETAIL_PROPERTY_HPP
0008 
0009 #include <utility> // for std::pair
0010 #include <boost/type_traits/same_traits.hpp> // for is_same
0011 
0012 namespace boost
0013 {
0014 
0015 namespace detail
0016 {
0017 
0018     struct error_property_not_found
0019     {
0020     };
0021 
0022 } // namespace detail
0023 } // namespace boost
0024 
0025 #endif // BOOST_DETAIL_PROPERTY_HPP