mirror of https://github.com/CGAL/cgal
Pacify msvc
This commit is contained in:
parent
8f853c2cfe
commit
f8aa0fe0e1
|
|
@ -51,7 +51,9 @@ void print_face(typename Arrangement::Face_const_handle f) {
|
||||||
size_t index = 1;
|
size_t index = 1;
|
||||||
for (auto hole = f->holes_begin(); hole != f->holes_end(); ++hole, ++index) {
|
for (auto hole = f->holes_begin(); hole != f->holes_end(); ++hole, ++index) {
|
||||||
std::cout << " Hole #" << index << ": ";
|
std::cout << " Hole #" << index << ": ";
|
||||||
print_ccb<Arrangement>(*hole);
|
// The following statement pacifies msvc.
|
||||||
|
typename Arrangement::Ccb_halfedge_const_circulator circ = *hole;
|
||||||
|
print_ccb<Arrangement>(circ);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Print the isolated vertices.
|
// Print the isolated vertices.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue