> In file included from /home/cgal_tester/build/src/cmake/platforms/CentOS5/src/CGAL/all_files.cpp:4:
> /mnt/testsuite/src/CGAL/Turkowski_numeric_solver.cpp:26:7: warning: no newline at end of file
> In file included from /home/cgal_tester/build/src/cmake/platforms/CentOS5/src/CGAL/all_files.cpp:21:
> /mnt/testsuite/src/CGAL/numeric_solvers_support.cpp:27:7: warning: no newline at end of file
> In file included from /home/cgal_tester/build/src/cmake/platforms/CentOS5/src/CGAL/all_files.cpp:25:
> /mnt/testsuite/src/CGAL/JAMA_numeric_solver.cpp:26:7: warning: no newline at end of file
| ------------------------------------------------------------------------
| 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.