From 6b0cba883b722f6899fa1f40cd2e2bc78493b512 Mon Sep 17 00:00:00 2001 From: albert-github Date: Sun, 29 Nov 2020 12:57:31 +0100 Subject: [PATCH] Typo in list of documentation typedefs I get a double defined ID (when running xmllint on the output) regarding the Vector_3 typedef. In my opinion the second definition should be Vector_2 and not Vector_3. --- .../doc/Shape_detection/Concepts/EfficientRANSACTraits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shape_detection/doc/Shape_detection/Concepts/EfficientRANSACTraits.h b/Shape_detection/doc/Shape_detection/Concepts/EfficientRANSACTraits.h index 791a6af649b..867a55fec70 100644 --- a/Shape_detection/doc/Shape_detection/Concepts/EfficientRANSACTraits.h +++ b/Shape_detection/doc/Shape_detection/Concepts/EfficientRANSACTraits.h @@ -38,7 +38,7 @@ public: /// The circle type, only required if you want to detect tori typedef unspecified_type Circle_2; /// The 2D vector type, only required if you want to detect tori - typedef unspecified_type Vector_3; + typedef unspecified_type Vector_2; /// The number type of the Cartesian coordinates of types Point_3 typedef unspecified_type FT;