Merge pull request #5031 from lrineau/Nef_2-fix_CGAL_NEF_TRACEN_warning-GF

Nef_2: Fix a warning in an debug code
This commit is contained in:
Sebastien Loriot 2020-10-02 15:07:46 +02:00 committed by GitHub
commit d877651637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -59,8 +59,7 @@
#ifndef NDEBUG
#define CGAL_NEF_TRACEN(t) if((debugthread%CGAL_NEF_DEBUG)==0) \
std::cerr<< " "<<t<<std::endl; \
std::cerr.flush()
std::cerr<< " "<<t<<std::endl;
#else
#define CGAL_NEF_TRACEN(t)
#endif