Adding back mistakenly removed polygon specialization

[SVN r82452]
This commit is contained in:
Bruno Lalande
2013-01-12 00:24:44 +00:00
parent 684945f1c5
commit ecf429362e

View File

@@ -135,6 +135,13 @@ struct clear<Geometry, ring_tag>
{};
// Polygon can (indirectly) use std for clear
template <typename Polygon>
struct clear<Polygon, polygon_tag>
: detail::clear::polygon_clear<Polygon>
{};
} // namespace dispatch
#endif // DOXYGEN_NO_DISPATCH