diff --git a/Advancing_front_surface_reconstruction/examples/Advancing_front_surface_reconstruction/reconstruction_structured.cpp b/Advancing_front_surface_reconstruction/examples/Advancing_front_surface_reconstruction/reconstruction_structured.cpp index d3d3c6448a0..b84d1701e38 100644 --- a/Advancing_front_surface_reconstruction/examples/Advancing_front_surface_reconstruction/reconstruction_structured.cpp +++ b/Advancing_front_surface_reconstruction/examples/Advancing_front_surface_reconstruction/reconstruction_structured.cpp @@ -140,7 +140,7 @@ int main (int argc, char* argv[]) ransac.detect(op); // Plane detection - typename Efficient_ransac::Plane_range planes = ransac.planes(); + Efficient_ransac::Plane_range planes = ransac.planes(); std::cerr << "done\nPoint set structuring... "; diff --git a/Point_set_processing_3/examples/Point_set_processing_3/structuring_example.cpp b/Point_set_processing_3/examples/Point_set_processing_3/structuring_example.cpp index 4f95a6bbc95..3cb5347a866 100644 --- a/Point_set_processing_3/examples/Point_set_processing_3/structuring_example.cpp +++ b/Point_set_processing_3/examples/Point_set_processing_3/structuring_example.cpp @@ -51,7 +51,7 @@ int main (int argc, char** argv) ransac.add_shape_factory(); ransac.detect(); - typename Efficient_ransac::Plane_range planes = ransac.planes(); + Efficient_ransac::Plane_range planes = ransac.planes(); Pwn_vector structured_pts;