"lpromoter" //
};
-bool contains_polygon_shape(std::string_view shape) {
+bool contains_polygon_shape(const std::string_view shape) {
return node_shapes_consisting_of_polygon.contains(shape) ||
node_shapes_consisting_of_polygon_and_polyline.contains(shape);
}
-bool contains_ellipse_shape(std::string_view shape) {
+bool contains_ellipse_shape(const std::string_view shape) {
return node_shapes_consisting_of_ellipse.contains(shape) ||
node_shapes_consisting_of_ellipse_and_polyline.contains(shape);
}