Fixed min max problem

This commit is contained in:
Andreas Fabri 2006-07-31 23:06:16 +00:00
parent 5440dc1c11
commit 8ec19079fb
1 changed files with 1 additions and 1 deletions

View File

@ -1817,7 +1817,7 @@ copy_tds(const Tds &tds, Vertex_handle vh)
set_dimension(tds.dimension());
// Number of pointers to cell/vertex to copy per cell.
int dim = std::max(1, dimension() + 1);
int dim = (std::max)(1, dimension() + 1);
if(n == 0) {return Vertex_handle();}