diff --git a/include/zeus/Global.hpp b/include/zeus/Global.hpp index 303b33f..de16211 100644 --- a/include/zeus/Global.hpp +++ b/include/zeus/Global.hpp @@ -20,6 +20,3 @@ constexpr void hash_combine_impl(SizeT& seed, SizeT value) { seed ^= value + 0x9e3779b9 + (seed<<6) + (seed>>2); } } // namespace zeus - -constexpr int rotr(int x, int n) { return ((x >> n) | (x << (32 - n))); } -constexpr int rotl(int x, int n) { return ((x << n) | (x >> (32 - n))); }