From a8a16dc20b6fca082ddd54062aac3f0b800ee2d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 8 Jul 2015 11:45:50 +0200 Subject: [PATCH] add missing parenthesis --- .../MeanCurvatureSkeletonizationTraits.h | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Surface_mesh_skeletonization/doc/Surface_mesh_skeletonization/Concepts/MeanCurvatureSkeletonizationTraits.h b/Surface_mesh_skeletonization/doc/Surface_mesh_skeletonization/Concepts/MeanCurvatureSkeletonizationTraits.h index 8e1ceb5b203..f8bdb71d229 100644 --- a/Surface_mesh_skeletonization/doc/Surface_mesh_skeletonization/Concepts/MeanCurvatureSkeletonizationTraits.h +++ b/Surface_mesh_skeletonization/doc/Surface_mesh_skeletonization/Concepts/MeanCurvatureSkeletonizationTraits.h @@ -128,46 +128,46 @@ typedef unspecified_type Compute_z_3; /// @{ Construct_point_3 -construct_point_3_object; +construct_point_3_object(); Construct_vector_3 -construct_vector_3_object; +construct_vector_3_object(); Construct_scaled_vector_3 -construct_scaled_vector_3_object; +construct_scaled_vector_3_object(); Construct_divided_vector_3 -construct_divided_vector_3_object; +construct_divided_vector_3_object(); Construct_cross_product_vector_3 -construct_cross_product_vector_3_object; +construct_cross_product_vector_3_object(); Construct_sum_of_vectors_3 -construct_sum_of_vectors_3_object; +construct_sum_of_vectors_3_object(); Construct_midpoint_3 -construct_midpoint_3_object; +construct_midpoint_3_object(); Compute_squared_distance_3 -compute_squared_distance_3_object; +compute_squared_distance_3_object(); Compute_squared_length_3 -compute_squared_length_3_object; +compute_squared_length_3_object(); Compute_area_3 -compute_area_3_object; +compute_area_3_object(); Compute_scalar_product_3 -compute_scalar_product_3_object; +compute_scalar_product_3_object(); Compute_x_3 -compute_x_3_object; +compute_x_3_object(); Compute_y_3 -compute_y_3_object; +compute_y_3_object(); Compute_z_3 -compute_z_3_object; +compute_z_3_object(); /// @}