summaryrefslogtreecommitdiff
path: root/boost/graph/max_cardinality_matching.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/graph/max_cardinality_matching.hpp')
-rw-r--r--boost/graph/max_cardinality_matching.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/graph/max_cardinality_matching.hpp b/boost/graph/max_cardinality_matching.hpp
index 1549345a2f..5b4a8b70d6 100644
--- a/boost/graph/max_cardinality_matching.hpp
+++ b/boost/graph/max_cardinality_matching.hpp
@@ -27,7 +27,7 @@
namespace boost
{
namespace graph { namespace detail {
- enum { V_EVEN, V_ODD, V_UNREACHED };
+ enum VERTEX_STATE { V_EVEN, V_ODD, V_UNREACHED };
} } // end namespace graph::detail
template <typename Graph, typename MateMap, typename VertexIndexMap>