1// (C) Copyright Jeremy Siek 2004
2// Distributed under the Boost Software License, Version 1.0. (See
3// accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5
6#ifndef BOOST_DETAIL_PROPERTY_HPP
7#define BOOST_DETAIL_PROPERTY_HPP
8
9#include <utility> // for std::pair
10#include <boost/type_traits/same_traits.hpp> // for is_same
11
12namespace boost
13{
14
15namespace detail
16{
17
18 struct error_property_not_found
19 {
20 };
21
22} // namespace detail
23} // namespace boost
24
25#endif // BOOST_DETAIL_PROPERTY_HPP
26