Cleaned up

This commit is contained in:
Efi Fogel 2020-07-02 19:10:29 +03:00
parent 3d83f95897
commit 5298ff114e
1 changed files with 2 additions and 3 deletions

View File

@ -125,9 +125,8 @@ public:
template <typename OutputIterator>
OutputIterator operator()(const Curve_2& line, OutputIterator oi) const
{
typedef boost::variant<Point_2, X_monotone_curve_2>
Make_x_monotone_2_result;
*oi++ = Make_x_monotone_2_result(line);
typedef boost::variant<Point_2, X_monotone_curve_2> Make_x_monotone_result;
*oi++ = Make_x_monotone_result(line);
return oi;
}
};