2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-01 08:32:11 +00:00

Added void as default value of lookup_one_property_internal::type for "not found"; refs #7378

[SVN r80524]
This commit is contained in:
Jeremiah Willcock
2012-09-14 18:04:00 +00:00
parent 8c83132ef7
commit adaa84d861

View File

@@ -55,7 +55,7 @@ namespace boost {
// Code to look up one property in a property list:
template <typename PList, typename PropName, typename Enable = void>
struct lookup_one_property_internal {BOOST_STATIC_CONSTANT(bool, found = false);};
struct lookup_one_property_internal {BOOST_STATIC_CONSTANT(bool, found = false); typedef void type;};
// Special-case properties (vertex_all, edge_all, graph_all)
#define BGL_ALL_PROP(tag) \