From 4534b5add4ac74acab970d248a4259fb050e7685 Mon Sep 17 00:00:00 2001 From: Adam Wulkiewicz Date: Tue, 28 May 2013 23:01:58 +0000 Subject: [PATCH] geometry extensions: fixed compile error in box translation. [SVN r84543] --- .../boost/geometry/extensions/algebra/algorithms/translate.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/geometry/extensions/algebra/algorithms/translate.hpp b/include/boost/geometry/extensions/algebra/algorithms/translate.hpp index 5ef0e9c54..ec5b47da6 100644 --- a/include/boost/geometry/extensions/algebra/algorithms/translate.hpp +++ b/include/boost/geometry/extensions/algebra/algorithms/translate.hpp @@ -98,7 +98,7 @@ struct translate static inline void apply(Box & box, Vector const& vector, boost::mpl::bool_ /*is_cartesian*/) { - geometry::detail::box_cartesian< + geometry::detail::translate::box_cartesian< Box, Vector, traits::dimension::value >::apply(box, vector); }