mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-11 11:52:11 +00:00
[test][sectionalize] Fix GCC4.4 compilation error.
Explicitly use namespace geometry in sectionalize() overload used in the test.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user