Skip to content

Commit

Permalink
fixed clang-format for Util.h
Browse files Browse the repository at this point in the history
Signed-off-by: Cho Moon <[email protected]>
  • Loading branch information
precisionmoon committed Oct 6, 2023
1 parent 8d6bb0a commit e202795
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/cts/src/Util.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,10 @@ namespace cts {
bool floatEqual(double x1, double x2, double epsilon = 1e-6);

// x1 >= x2
bool floatEqualOrGreater(double x1,
double x2,
double epsilon = 1e-6);
bool floatEqualOrGreater(double x1, double x2, double epsilon = 1e-6);

// x1 <= x2
bool floatEqualOrSmaller(double x1,
double x2,
double epsilon = 1e-6);
bool floatEqualOrSmaller(double x1, double x2, double epsilon = 1e-6);

template <class T>
class Point
Expand Down

0 comments on commit e202795

Please sign in to comment.