mirror of https://github.com/CGAL/cgal
Prevent name conflict with min/max
This commit is contained in:
parent
0040d62791
commit
9a1c16fc9f
|
|
@ -463,7 +463,7 @@ Delaunay_triangulation<DCTraits, TDS>
|
|||
maximal_dimension(),
|
||||
flat_orientation_ ?
|
||||
std::pair<int, const Flat_orientation_d *>(current_dimension(), flat_orientation_.get_ptr())
|
||||
: std::pair<int, const Flat_orientation_d *>(std::numeric_limits<int>::max(), NULL) );
|
||||
: std::pair<int, const Flat_orientation_d *>((std::numeric_limits<int>::max)(), NULL) );
|
||||
|
||||
Dark_s_handle dark_s;
|
||||
Dark_v_handle dark_v;
|
||||
|
|
|
|||
|
|
@ -234,7 +234,7 @@ public:
|
|||
, kernel_(k)
|
||||
, infinity_()
|
||||
, rng_((long)0)
|
||||
, preset_flat_orientation_(std::numeric_limits<int>::max(), NULL)
|
||||
, preset_flat_orientation_((std::numeric_limits<int>::max)(), NULL)
|
||||
#ifdef CGAL_TRIANGULATION_STATISTICS
|
||||
,walk_size_(0)
|
||||
#endif
|
||||
|
|
@ -268,7 +268,7 @@ public:
|
|||
, kernel_(t2.kernel_)
|
||||
, infinity_()
|
||||
, rng_(t2.rng_)
|
||||
, preset_flat_orientation_(std::numeric_limits<int>::max(), NULL)
|
||||
, preset_flat_orientation_((std::numeric_limits<int>::max)(), NULL)
|
||||
#ifdef CGAL_TRIANGULATION_STATISTICS
|
||||
,walk_size_(t2.walk_size_)
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue