diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-20 05:30:18 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-20 05:30:18 +0100 |
commit | ed668849a1ca838792365e6b2d122e916d0eaf51 (patch) | |
tree | ce0d2cbb144da3c0dacf116fe980240998c565bb | |
parent | 70b725839668fa3ae503d1109900153e6f5b7743 (diff) |
fix build
-rw-r--r-- | entity/erased-constraints.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/entity/erased-constraints.hpp b/entity/erased-constraints.hpp index 2d4b47ae..7daec237 100644 --- a/entity/erased-constraints.hpp +++ b/entity/erased-constraints.hpp @@ -55,7 +55,7 @@ constexpr bool operator==(const range& a, const range& b) if (a.type != b.type) return false; - static constexpr float eps = 1e-6f; + constexpr float eps = 1e-6f; switch (a.type) { |