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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user