diff options
author | rtk0c <[email protected]> | 2021-06-21 18:30:38 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-06-21 18:30:38 -0700 |
commit | 43cd2bd879d529fcbd0a0f64eccd4ce1eb872ab4 (patch) | |
tree | 12e7bcbd08a30f76d83bd1bc8943133f3d5d51b9 /core/src/Utils | |
parent | 4378dcd83d2387534f3b10276365d1003832fe81 (diff) |
Implement array group conversion logic
Diffstat (limited to 'core/src/Utils')
-rw-r--r-- | core/src/Utils/Math.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/Utils/Math.hpp b/core/src/Utils/Math.hpp index 2d0c0cd..da53da2 100644 --- a/core/src/Utils/Math.hpp +++ b/core/src/Utils/Math.hpp @@ -8,4 +8,4 @@ constexpr T Abs(T t) return t < 0 ? -t : t; } -} // namespace Math +} // namespace MathUtils |