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:
Laurent Rineau 2016-02-02 12:20:41 +01:00
parent 3ce368732f
commit 545149d99e
4 changed files with 8 additions and 3 deletions

4
.gitignore vendored
View File

@ -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

View File

@ -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__

View File

@ -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>

View File

@ -26,7 +26,7 @@
#ifndef CGAL_TIMER_H
#define CGAL_TIMER_H 1
#include <CGAL/basic.h>
#include <CGAL/config.h>
namespace CGAL {