mirror of https://github.com/CGAL/cgal
Comment call to leda::print_statistics function which is missing in the free edition
This commit is contained in:
parent
de4f2d8445
commit
e1d3b3db3b
|
|
@ -29,7 +29,6 @@
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef CGAL_USE_GMP
|
#ifdef CGAL_USE_GMP
|
||||||
#include <CGAL/Gmpz.h>
|
#include <CGAL/Gmpz.h>
|
||||||
typedef CGAL::Homogeneous_d<CGAL::Gmpz> GKernel;
|
typedef CGAL::Homogeneous_d<CGAL::Gmpz> GKernel;
|
||||||
|
|
@ -229,9 +228,10 @@ if ( which & 16 ) {
|
||||||
|
|
||||||
#ifdef CGAL_USE_LEDA
|
#ifdef CGAL_USE_LEDA
|
||||||
#if defined(LEDA_NAMESPACE)
|
#if defined(LEDA_NAMESPACE)
|
||||||
leda::print_statistics();
|
std::cout << "leda::print_statistics() is missing in the free edition" << std::endl;
|
||||||
|
// leda::print_statistics();
|
||||||
#else
|
#else
|
||||||
print_statistics();
|
// print_statistics();
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
destroy(V,n);
|
destroy(V,n);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue