From 02696ce780ea682dd8be429f587a5fd25b2c9b4c Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sat, 6 Nov 2021 09:22:31 +0000 Subject: [PATCH] clang-format and clang-tidy fixes for 1c05ca7c --- geometry/graham_scan_functions.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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;