2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00

Removed obsolete file

[SVN r57901]
This commit is contained in:
Jeremiah Willcock
2009-11-24 19:43:16 +00:00
parent b2636ec3ea
commit 09496c3696

View File

@@ -6,7 +6,7 @@
#ifndef BOOST_PROPERTY_HPP
#define BOOST_PROPERTY_HPP
#include <boost/pending/ct_if.hpp>
#include <boost/mpl/bool.hpp>
namespace boost {
@@ -47,15 +47,9 @@ namespace boost {
};
template <class P>
struct has_property {
BOOST_STATIC_CONSTANT(bool, value = true);
typedef true_type type;
};
struct has_property : boost::mpl::true_ {};
template <>
struct has_property<no_property> {
BOOST_STATIC_CONSTANT(bool, value = false);
typedef false_type type;
};
struct has_property<no_property> : boost::mpl::false_ {};
} // namespace boost