Skip to content

Commit

Permalink
Regular merge (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
roeas authored Jun 15, 2024
1 parent 2b79db7 commit a402fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Frame/Source/Assignment/Utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ inline std::string PathFromAsset(std::string relativePath)

inline bool FloatEqual(const float a, const float b, const float EPSILON = FLT_EPSILON)
{
return (std::abs(a - b) <= EPSILON);
return std::abs(a - b) <= EPSILON;
}

} // namespace Utils

0 comments on commit a402fe2

Please sign in to comment.