return 0 added

a workaround for output operator matching failure used
This commit is contained in:
Dmitrii V Pasechnik 2001-01-04 16:31:55 +00:00
parent 18597afedc
commit 227b3121aa
1 changed files with 8 additions and 2 deletions

View File

@ -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;
}