diff options
author | George Marques <george@gmarqu.es> | 2021-02-28 16:52:06 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2021-02-28 16:57:34 -0300 |
commit | cba90d630177ce6c57b5537e74ef3eab4e9c1ea2 (patch) | |
tree | 439897c2673d4f0af2635abffe73699d0cae6a01 /include/core/Math.hpp | |
parent | 77d41fa179e40560f1e264ed483638bf51713779 (diff) | |
download | redot-cpp-cba90d630177ce6c57b5537e74ef3eab4e9c1ea2.tar.gz |
Update clang-format to version 11
This is taken from the Godot repository, so formatting is similar. This
updates the style rules as well.
Also fix style in files to conform with this version.
Diffstat (limited to 'include/core/Math.hpp')
-rw-r--r-- | include/core/Math.hpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/core/Math.hpp b/include/core/Math.hpp index a971bb8..4cabe0d 100644 --- a/include/core/Math.hpp +++ b/include/core/Math.hpp @@ -232,7 +232,6 @@ inline double stepify(double p_value, double p_step) { }
inline unsigned int next_power_of_2(unsigned int x) {
-
if (x == 0)
return 0;
|