mirror of https://github.com/CGAL/cgal
fixed templared insert in Constrained_triangulation_plus
This commit is contained in:
parent
f1e6cd10b9
commit
b00d48891e
|
|
@ -1,6 +1,9 @@
|
|||
Package triangulation: provides triangulations Delaunay triangulations,
|
||||
constrained and regular triangulations with tests and examples.
|
||||
|
||||
ver 7.21
|
||||
- again a fix for VC7
|
||||
|
||||
Ver 7.20
|
||||
- add special_insert_in_edge() for Delaunay_constrained_triangulations
|
||||
- fixes for VC7
|
||||
|
|
|
|||
|
|
@ -181,7 +181,15 @@ public:
|
|||
//template member functions
|
||||
public:
|
||||
template < class InputIterator >
|
||||
int insert(InputIterator first, InputIterator last)
|
||||
#ifdef _MSC_VER
|
||||
#if _MSC_VER>1200
|
||||
int insert(InputIterator first, InputIterator last, int i = 0)
|
||||
#else
|
||||
int insert(InputIterator first, InputIterator last)
|
||||
#endif
|
||||
#else
|
||||
int insert(InputIterator first, InputIterator last)
|
||||
#endif
|
||||
{
|
||||
int n = number_of_vertices();
|
||||
while(first != last){
|
||||
|
|
|
|||
Loading…
Reference in New Issue