Ticket #7378: property.hpp.patch

File property.hpp.patch, 989 bytes (added by Andreas Hehn <hehn@…>, 10 years ago)

patch

  • boost/pending/property.hpp

     
    1212#include <boost/utility/enable_if.hpp>
    1313#include <boost/type_traits.hpp>
    1414#include <boost/static_assert.hpp>
     15#include <boost/pending/detail/property.hpp>
    1516
    1617namespace boost {
    1718
     
    5556
    5657  // Code to look up one property in a property list:
    5758  template <typename PList, typename PropName, typename Enable = void>
    58   struct lookup_one_property_internal {BOOST_STATIC_CONSTANT(bool, found = false);};
     59  struct lookup_one_property_internal {
     60      BOOST_STATIC_CONSTANT(bool, found = false);
     61      typedef detail::error_property_not_found type;
     62  };
    5963
    6064  // Special-case properties (vertex_all, edge_all, graph_all)
    6165#define BGL_ALL_PROP(tag) \
     
    173177
    174178} // namespace boost
    175179
    176 #include <boost/pending/detail/property.hpp>
    177180
    178181namespace boost {
    179182