From 294b888f76e1ce0b9c15c105093fcaebfbadb72e Mon Sep 17 00:00:00 2001 From: Adam Wulkiewicz Date: Sun, 27 Apr 2014 18:48:35 +0200 Subject: [PATCH] [test][sectionalize] Fix GCC4.4 compilation error. Explicitly use namespace geometry in sectionalize() overload used in the test. --- .../algorithms/detail/sections/sectionalize.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/geometry/algorithms/detail/sections/sectionalize.hpp b/include/boost/geometry/algorithms/detail/sections/sectionalize.hpp index 00a5ad55f..af35794e2 100644 --- a/include/boost/geometry/algorithms/detail/sections/sectionalize.hpp +++ b/include/boost/geometry/algorithms/detail/sections/sectionalize.hpp @@ -724,12 +724,12 @@ inline void sectionalize(Geometry const& geometry, // Backwards compatibility template inline void sectionalize(Geometry const& geometry, - Sections& sections, - int source_index = 0) + Sections& sections, + int source_index = 0) { - return sectionalize(geometry, detail::no_rescale_policy(), - false, sections, - source_index); + return geometry::sectionalize(geometry, detail::no_rescale_policy(), + false, sections, + source_index); } #endif