This commit is contained in:
Sylvain Pion 2001-05-28 12:45:36 +00:00
parent 006a4142a2
commit e6fb58bb8a
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
Version 1.54 (?? May 01)
- VC++ fix.
Version 1.53 (23 May 01)
- Put Triangulation_hierarchy_vertex_base_3 in its own file.
- VC++ for()-scope workaround.

View File

@ -300,7 +300,7 @@ remove(Vertex_handle v)
Vertex_handle inf = infinite_vertex();
std::vector< typename Tds::Vertex * > Vertices =
std::vector< CGAL_TYPENAME_MSVC_NULL Tds::Vertex * > Vertices =
_tds.clear_cells_only();
_tds.set_number_of_vertices(0);
@ -308,7 +308,7 @@ remove(Vertex_handle v)
_tds.insert_increase_dimension( &(*inf) );
CGAL_triangulation_assertion( inf == infinite_vertex() );
typename std::vector< typename Tds::Vertex * >::iterator vit;
typename std::vector<CGAL_TYPENAME_MSVC_NULL Tds::Vertex * >::iterator vit;
for ( vit = Vertices.begin(); vit != Vertices.end(); ++vit )
if ( *vit != &(*inf) && *vit != &(*v) )