mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-08 06:43:14 +08:00
clang-format and clang-tidy fixes for 1c05ca7c
This commit is contained in:
@@ -167,8 +167,9 @@ std::vector<Point> convexHull(std::vector<Point> 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<Point> S;
|
||||
|
||||
Reference in New Issue
Block a user