mirror of https://github.com/CGAL/cgal
- VC++ fix.
This commit is contained in:
parent
302ee54de4
commit
d11e0a0b06
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue