diff --git a/geometry/graham_scan_functions.hpp b/geometry/graham_scan_functions.hpp index a47eab302..2216e7a5b 100644 --- a/geometry/graham_scan_functions.hpp +++ b/geometry/graham_scan_functions.hpp @@ -167,8 +167,9 @@ std::vector convexHull(std::vector points, uint64_t size) { // If modified array of points has less than 3 points, convex hull is not // possible - if (m < 3) - return {}; + if (m < 3) { + return {} + }; // Create an empty stack and push first three points to it. std::stack S;