From 79ce0f7bb5c4a820d326bec3141d8485dd6a548f Mon Sep 17 00:00:00 2001 From: Bruno Lalande Date: Tue, 8 Jan 2013 21:58:04 +0000 Subject: [PATCH] Gave variant dispatcher a more algorithm-specific name. [SVN r82409] --- include/boost/geometry/algorithms/clear.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/geometry/algorithms/clear.hpp b/include/boost/geometry/algorithms/clear.hpp index 77368aa7a..ff5bb91f2 100644 --- a/include/boost/geometry/algorithms/clear.hpp +++ b/include/boost/geometry/algorithms/clear.hpp @@ -124,7 +124,7 @@ struct clear {}; -struct variant_dispatcher: boost::static_visitor +struct clear_variant_dispatcher: boost::static_visitor { template void operator()(Geometry& geometry) const @@ -164,7 +164,7 @@ inline void clear(Geometry& geometry) template inline void clear(boost::variant& geometry) { - apply_visitor(dispatch::variant_dispatcher(), geometry); + apply_visitor(dispatch::clear_variant_dispatcher(), geometry); }