diff --git a/geometry/graham_scan_functions.hpp b/geometry/graham_scan_functions.hpp index 2216e7a5b..a254913f8 100644 --- a/geometry/graham_scan_functions.hpp +++ b/geometry/graham_scan_functions.hpp @@ -168,7 +168,7 @@ 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 {} + return {}; }; // Create an empty stack and push first three points to it.