- VC++ fix.

This commit is contained in:
Sylvain Pion 2003-06-04 14:53:12 +00:00
parent 302ee54de4
commit d11e0a0b06
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,6 @@
Version 1.149 (4 June 03)
- Forgot the VC++ workaround to the last change.
Version 1.148 (4 June 03)
- Use Filtered_exact instead of Filtered_kernel in the test-suite since regular
is not ready until the weighted points are in the kernel.

View File

@ -25,6 +25,15 @@
#define Simple_cartesian Sc
#include <CGAL/Simple_cartesian.h>
// Workaround for buggy compilers.
#ifdef CGAL_CFG_MATCHING_BUG_2
# define CGAL_IA_CT double
# define CGAL_IA_ET CGAL::MP_Float
# define CGAL_IA_CACHE No_Filter_Cache
# define CGAL_IA_PROTECTED true
#endif
#include <CGAL/Filtered_exact.h>
#include <CGAL/MP_Float.h>