diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-06 19:54:22 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-07 08:02:00 +0100 |
| commit | d5ca9e2f6fa47b899fb28dc07cd321e1719b36de (patch) | |
| tree | 33d39e1299ed9258c4c196b2e0be24fc900251d3 /core/math | |
| parent | 9ff17379c24a800dc598bf41a5981fc5d1c54291 (diff) | |
Style: Apply clang-format again on all files
Fixes issues introduced by newer clang-format versions or commits
pushed directly without using the clang-format pre-commit hook.
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/face3.cpp | 2 | ||||
| -rw-r--r-- | core/math/face3.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/core/math/face3.cpp b/core/math/face3.cpp index 070ce77db4..2335b458bf 100644 --- a/core/math/face3.cpp +++ b/core/math/face3.cpp @@ -195,7 +195,7 @@ bool Face3::intersects_aabb(const AABB &p_aabb) const { if (!p_aabb.intersects_plane(get_plane())) return false; - /** TEST FACE AXIS */ +/** TEST FACE AXIS */ #define TEST_AXIS(m_ax) \ { \ diff --git a/core/math/face3.h b/core/math/face3.h index 561fa31238..9a1f6b2c2e 100644 --- a/core/math/face3.h +++ b/core/math/face3.h @@ -256,6 +256,4 @@ bool Face3::intersects_aabb2(const AABB &p_aabb) const { return true; } - //this sucks... - #endif // FACE3_H |