diff --git a/doc/src/docutils/tools/support_status/support_status.cpp b/doc/src/docutils/tools/support_status/support_status.cpp index 2fbc46a14..4cf636d74 100644 --- a/doc/src/docutils/tools/support_status/support_status.cpp +++ b/doc/src/docutils/tools/support_status/support_status.cpp @@ -34,6 +34,8 @@ #include #include #include +#include +#include #include #include #include @@ -121,6 +123,8 @@ DECLARE_BINARY_ALGORITHM(equals) DECLARE_BINARY_ALGORITHM(expand) DECLARE_UNARY_ALGORITHM(for_each_point) DECLARE_UNARY_ALGORITHM(for_each_segment) +DECLARE_UNARY_ALGORITHM(is_simple) +DECLARE_UNARY_ALGORITHM(is_valid) DECLARE_UNARY_ALGORITHM(length) DECLARE_UNARY_ALGORITHM(num_geometries) DECLARE_UNARY_ALGORITHM(num_interior_rings) @@ -257,10 +261,12 @@ void support_status() test_binary_algorithm("expand"); test_unary_algorithm("for_each_point"); test_unary_algorithm("for_each_segment"); + test_unary_algorithm("is_simple"); + test_unary_algorithm("is_valid"); test_unary_algorithm("length"); test_unary_algorithm("num_geometries"); test_unary_algorithm("num_interior_rings"); - test_unary_algorithm("num_points"); + test_unary_algorithm("num_points"); test_binary_algorithm("overlaps"); test_unary_algorithm("perimeter"); test_unary_algorithm("reverse");