Fix header inclusion order problem by #including <CGAL/config.h> instead of <CGAL/basic.h>.

Really: <CGAL/basic.h> should go away!
This commit is contained in:
Sylvain Pion 2008-07-12 21:09:38 +00:00
parent e1c2d60890
commit 32a9d86ec2
3 changed files with 4 additions and 4 deletions

View File

@ -21,9 +21,9 @@
#ifndef CGAL_UNCERTAIN_H
#define CGAL_UNCERTAIN_H
#include <CGAL/basic.h>
#include <stdexcept>
#include <CGAL/config.h>
#include <CGAL/enum.h>
#include <stdexcept>
CGAL_BEGIN_NAMESPACE

View File

@ -24,7 +24,7 @@
#ifndef CGAL_SAME_UNCERTAINTY_H
#define CGAL_SAME_UNCERTAINTY_H
#include <CGAL/basic.h>
#include <CGAL/config.h>
CGAL_BEGIN_NAMESPACE

View File

@ -24,7 +24,7 @@
#ifndef CGAL_ENUM_H
#define CGAL_ENUM_H
#include <CGAL/basic.h>
#include <CGAL/config.h>
#include <CGAL/Kernel/Same_uncertainty.h>
// If you add/change one type here, please update Is_a_predicate.h as well.