| ------------------------------------------------------------------------
| r55821 | drussel | 2010-04-29 04:19:59 +0200 (Thu, 29 Apr 2010) | 1 line
| Changed paths:
| M /trunk/Kinetic_data_structures/src/CGAL/numeric_solvers_support.cpp
|
| use the newish grand unified polynomial internally
| ------------------------------------------------------------------------
Reasons are:
- it uses C99 dynamic C arrays allocated on the stack instead of
std::vector,
- C99 dynamic C arrays are not in C++98 (they will probably be in C++0x),
- g++ implements that as an extension,
- VC++ does not,
- that is in libCGAL, and for that reason the whole CGAL testsuite is red
under Microsoft VC++.
Suggestion (already emailed to Daniel): use std::vector instead of dynamic
C arrays, and resubmit the patch.