From 136d84356f510fa0e0775ff3536118b29f8248fc Mon Sep 17 00:00:00 2001 From: Bruno Lalande Date: Sat, 12 Jan 2013 18:33:20 +0000 Subject: [PATCH] Used 'devarianted_' term in append algorithm, like for equals. [SVN r82464] --- include/boost/geometry/algorithms/append.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/geometry/algorithms/append.hpp b/include/boost/geometry/algorithms/append.hpp index d5967615e..f2d0d366d 100644 --- a/include/boost/geometry/algorithms/append.hpp +++ b/include/boost/geometry/algorithms/append.hpp @@ -195,7 +195,7 @@ struct append {}; template -struct variant_dispatch +struct devarianted_append { template static inline void apply(Geometry& geometry, @@ -213,7 +213,7 @@ struct variant_dispatch template -struct variant_dispatch > +struct devarianted_append > { template struct visitor: boost::static_visitor @@ -281,7 +281,7 @@ template inline void append(Geometry& geometry, RangeOrPoint const& range_or_point, int ring_index = -1, int multi_index = 0) { - dispatch::variant_dispatch + dispatch::devarianted_append ::apply(geometry, range_or_point, ring_index, multi_index); }