diff --git a/include/boost/graph/random.hpp b/include/boost/graph/random.hpp index 55bb2944..a28f5e9f 100644 --- a/include/boost/graph/random.hpp +++ b/include/boost/graph/random.hpp @@ -164,13 +164,6 @@ namespace boost { } } - template - void randomize_property(G& g, RandomGenerator& rg) - { - detail::randomize_property - (g, rg, Property(), typename property_kind::type()); - } - namespace detail { template @@ -196,6 +189,13 @@ namespace boost { } } + template + void randomize_property(G& g, RandomGenerator& rg) + { + detail::randomize_property + (g, rg, Property(), typename property_kind::type()); + } +