mirror of https://github.com/CGAL/cgal
return 0 added
a workaround for output operator matching failure used
This commit is contained in:
parent
18597afedc
commit
227b3121aa
|
|
@ -30,8 +30,14 @@ int main(int argc, char *argv[])
|
|||
tr.insert(point_t(-140,400,-200));
|
||||
tr.insert(point_t(100,-350,0));
|
||||
tr.insert(point_t(500,-300,-250));
|
||||
|
||||
#ifndef _MSC_VER
|
||||
W << CGAL::set_color_1(CGAL::ORANGE) ;
|
||||
#else
|
||||
{
|
||||
CGAL::O_manip<CGAL::Color> xxx = CGAL::set_color_1(CGAL::ORANGE);
|
||||
xxx.f(W,xxx.i);
|
||||
}
|
||||
#endif
|
||||
Delaunay_3::Cell_iterator cit;
|
||||
tetra t;
|
||||
for (cit = tr.finite_cells_begin(); cit != tr.cells_end(); cit++) {
|
||||
|
|
@ -39,7 +45,7 @@ int main(int argc, char *argv[])
|
|||
W << t;
|
||||
}
|
||||
W.main_loop();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue