mirror of https://github.com/CGAL/cgal
Fix a compilation error detected by Travis
This commit is contained in:
parent
030b4cf3a4
commit
d429669d00
|
|
@ -24,7 +24,6 @@
|
||||||
|
|
||||||
#include <CGAL/license/Polytope_distance_d.h>
|
#include <CGAL/license/Polytope_distance_d.h>
|
||||||
|
|
||||||
|
|
||||||
#ifdef SIMPLIFY
|
#ifdef SIMPLIFY
|
||||||
#define GCD_COMPUTATION 1
|
#define GCD_COMPUTATION 1
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -98,16 +97,16 @@
|
||||||
#include<iostream>
|
#include<iostream>
|
||||||
|
|
||||||
#define DEBUGENDL(doit,msg,var)\
|
#define DEBUGENDL(doit,msg,var)\
|
||||||
if(doit!=0) std::cout << msg << " " << var << endl;
|
if(doit!=0) std::cout << msg << " " << var << std::endl;
|
||||||
|
|
||||||
#define DEBUGPRINT(doit,msg,var)\
|
#define DEBUGPRINT(doit,msg,var)\
|
||||||
if(doit!=0) std::cout << msg << " " << var;
|
if(doit!=0) std::cout << msg << " " << var;
|
||||||
|
|
||||||
#define DEBUGMSG(doit,msg)\
|
#define DEBUGMSG(doit,msg)\
|
||||||
if(doit!=0) std::cout << msg << endl;
|
if(doit!=0) std::cout << msg << std::endl;
|
||||||
|
|
||||||
#define INFOMSG(doit,msg)\
|
#define INFOMSG(doit,msg)\
|
||||||
if(doit!=0) std::cerr<<msg<<endl;
|
if(doit!=0) std::cerr<<msg<<std::endl;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#define DEBUGENDL(doit,msg,var)
|
#define DEBUGENDL(doit,msg,var)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue