Fix a compilation error detected by Travis

This commit is contained in:
Laurent Rineau 2019-10-02 14:26:28 +02:00
parent 030b4cf3a4
commit d429669d00
1 changed files with 3 additions and 4 deletions

View File

@ -24,7 +24,6 @@
#include <CGAL/license/Polytope_distance_d.h>
#ifdef SIMPLIFY
#define GCD_COMPUTATION 1
#endif
@ -98,16 +97,16 @@
#include<iostream>
#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)\
if(doit!=0) std::cout << msg << " " << var;
#define DEBUGMSG(doit,msg)\
if(doit!=0) std::cout << msg << endl;
if(doit!=0) std::cout << msg << std::endl;
#define INFOMSG(doit,msg)\
if(doit!=0) std::cerr<<msg<<endl;
if(doit!=0) std::cerr<<msg<<std::endl;
#else
#define DEBUGENDL(doit,msg,var)