File tree 1 file changed +1
-6
lines changed
Polyhedron/demo/Polyhedron/Plugins/Mesh_3
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,9 @@ Polyhedron_demo_c3t3_binary_io_plugin::load(QFileInfo fileinfo) {
72
72
item->setName (fileinfo.baseName ());
73
73
item->setScene (scene);
74
74
75
-
76
75
if (item->load_binary (in)) {
77
76
return item;
78
77
}
79
-
80
78
item->c3t3 ().clear ();
81
79
in.seekg (0 );
82
80
if (try_load_other_binary_format (in, item->c3t3 ())) {
@@ -85,7 +83,6 @@ Polyhedron_demo_c3t3_binary_io_plugin::load(QFileInfo fileinfo) {
85
83
item->resetCutPlane ();
86
84
return item;
87
85
}
88
-
89
86
item->c3t3 ().clear ();
90
87
in.seekg (0 );
91
88
if (try_load_a_cdt_3 (in, item->c3t3 ())) {
@@ -481,9 +478,8 @@ try_load_other_binary_format(std::istream& is, C3t3& c3t3)
481
478
C3t3::Triangulation,
482
479
Update_vertex<Fake_c3t3::Triangulation, C3t3::Triangulation>,
483
480
Update_cell>(is, c3t3.triangulation (),
484
- Update_vertex (),
481
+ Update_vertex<Fake_c3t3::Triangulation, C3t3::Triangulation> (),
485
482
Update_cell ()
486
- #ifdef CGAL_CXX11
487
483
,
488
484
/* call_back: a C++11 lambda */
489
485
[](std::istream& is,
@@ -526,7 +522,6 @@ try_load_other_binary_format(std::istream& is, C3t3& c3t3)
526
522
last_pos = curr;
527
523
}
528
524
}
529
- #endif // CGAL_CXX11
530
525
);
531
526
std::cerr << " DONE.\n " ;
532
527
You can’t perform that action at this time.
0 commit comments