Skip to Content.
Sympa Menu

cgal-discuss - Small bug in cartesian_moving_point_2.h ?

Subject: CGAL users discussion list

List archive

Small bug in cartesian_moving_point_2.h ?


Chronological Thread 
  • From:
  • To:
  • Subject: Small bug in cartesian_moving_point_2.h ?
  • Date: Thu, 3 May 2007 10:52:27 +0200

Hello,

To be able to compile under VS2005 express, I reimplaced

line 188 -- cartesian_moving_point_2.h >> std::isspace(c));

by the following bloc

#ifndef CGAL_CFG_NO_LOCALE
(std::isspace(c,std::locale::classic()));
#else
(std::isspace(c));
#endif // CGAL_CFG_NO_LOCALE

Is it correct ?

Thanks



Archive powered by MHonArc 2.6.16.

Top of Page