summaryrefslogtreecommitdiff
path: root/boost/graph/is_kuratowski_subgraph.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/graph/is_kuratowski_subgraph.hpp')
-rw-r--r--boost/graph/is_kuratowski_subgraph.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/boost/graph/is_kuratowski_subgraph.hpp b/boost/graph/is_kuratowski_subgraph.hpp
index 8791b4cf18..1dd314d317 100644
--- a/boost/graph/is_kuratowski_subgraph.hpp
+++ b/boost/graph/is_kuratowski_subgraph.hpp
@@ -9,7 +9,6 @@
#define __IS_KURATOWSKI_SUBGRAPH_HPP__
#include <boost/config.hpp>
-#include <boost/utility.hpp> //for next/prior
#include <boost/tuple/tuple.hpp> //for tie
#include <boost/property_map/property_map.hpp>
#include <boost/graph/properties.hpp>
@@ -301,11 +300,11 @@ namespace boost
if (target_graph == detail::tg_k_5)
{
- return isomorphism(K_5,contracted_graph);
+ return boost::isomorphism(K_5,contracted_graph);
}
else //target_graph == tg_k_3_3
{
- return isomorphism(K_3_3,contracted_graph);
+ return boost::isomorphism(K_3_3,contracted_graph);
}