Global: Remove unused rotr/rotl functions

These don't appear to be used by anything, so they can be removed.
This commit is contained in:
Lioncash 2019-09-04 10:37:18 -04:00
parent 2206497e35
commit 76a7129d80
1 changed files with 0 additions and 3 deletions

View File

@ -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))); }