[test][sectionalize] Fix GCC4.4 compilation error.

Explicitly use namespace geometry in sectionalize() overload used in the test.
This commit is contained in:
Adam Wulkiewicz
2014-04-27 18:48:35 +02:00
parent d41be62461
commit 294b888f76

View File

@@ -724,12 +724,12 @@ inline void sectionalize(Geometry const& geometry,
// Backwards compatibility
template<bool Reverse, typename Geometry, typename Sections>
inline void sectionalize(Geometry const& geometry,
Sections& sections,
int source_index = 0)
Sections& sections,
int source_index = 0)
{
return sectionalize<Reverse>(geometry, detail::no_rescale_policy(),
false, sections,
source_index);
return geometry::sectionalize<Reverse>(geometry, detail::no_rescale_policy(),
false, sections,
source_index);
}
#endif