Replace #undef CGAL_NO_STATIC_FILTERS by explicit true template argument.

This commit is contained in:
Sylvain Pion 2009-10-16 13:52:49 +00:00
parent d2a078803b
commit 5f2882dc84
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
#define CGAL_PROFILE
#undef CGAL_NO_STATIC_FILTERS
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Filtered_kernel.h>
@ -7,7 +6,7 @@
#include <CGAL/Random.h>
typedef CGAL::Simple_cartesian<double> K0;
typedef CGAL::Filtered_kernel<K0> K2;
typedef CGAL::Filtered_kernel<K0, true> K2;
typedef CGAL::Filtered_kernel<K0, false> K4;
typedef CGAL::Kernel_checker<K2, K4> K3;