added missing const in make_x_monotone()

This commit is contained in:
Efi Fogel 2004-03-24 11:03:12 +00:00
parent 02df9e84a8
commit 7413d30d8b
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ public:
*/
template<class OutputIterator>
OutputIterator curve_make_x_monotone (const Curve_2& curve,
OutputIterator o)
OutputIterator o) const
{
// Go over all curve segments.
int n = curve._size();