mirror of https://github.com/CGAL/cgal
include <CGAL/config.h> instead of <CGAL/basic.h>
No need to include the CGAL kernels to use CGAL timers!
This commit is contained in:
parent
3ce368732f
commit
545149d99e
|
|
@ -800,6 +800,10 @@ Principal_component_analysis/test/Principal_component_analysis/test_linear_least
|
|||
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_tetrahedra_3
|
||||
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_triangles_2
|
||||
Principal_component_analysis/test/Principal_component_analysis/test_linear_least_squares_fitting_triangles_3
|
||||
/Profiling_tools/test/Profiling_tools/CMakeLists.txt
|
||||
/Profiling_tools/test/Profiling_tools/cgal_test_with_cmake
|
||||
/Profiling_tools/test/Profiling_tools/test_memory_sizer
|
||||
/Profiling_tools/test/Profiling_tools/test_timer
|
||||
QP_solver/documentation/Degeneracies.aux
|
||||
QP_solver/documentation/Degeneracies.log
|
||||
QP_solver/documentation/Degeneracies.pdf
|
||||
|
|
|
|||
|
|
@ -20,7 +20,8 @@
|
|||
#ifndef CGAL_MEMORY_SIZER_H
|
||||
#define CGAL_MEMORY_SIZER_H
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <CGAL/config.h>
|
||||
#include <CGAL/assertions.h>
|
||||
|
||||
// This has only been implemented for MacOSX/Darwin, Linux and VC++ for now.
|
||||
#if !defined _MSC_VER && !defined __linux__ && !defined __APPLE__
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef CGAL_REAL_TIMER_H
|
||||
#define CGAL_REAL_TIMER_H 1
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <CGAL/config.h>
|
||||
// For the numerical limits
|
||||
#include <cfloat>
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef CGAL_TIMER_H
|
||||
#define CGAL_TIMER_H 1
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <CGAL/config.h>
|
||||
|
||||
namespace CGAL {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue