Another attempt to get around a compilation error on MSVC 6.0

This commit is contained in:
Efi Fogel 2003-02-05 19:03:11 +00:00
parent 5dc9403344
commit 8ff3124dec
1 changed files with 7 additions and 1 deletions

View File

@ -1651,9 +1651,15 @@ protected:
void print_points_on_curves(const _Curve_node& cv);
#endif
#if 0
// This doesn't compile with MSVC 6.0
friend class Less_xy; // less_point_xy;
friend class Less_yx; // less_curve_xy;
#else
friend class less_point_xy;
friend class less_curve_xy;
#endif
Traits *traits;
bool use_delete_traits;
bool intersection_exist_;