mirror of https://github.com/AxioDL/zeus.git
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:
parent
2206497e35
commit
76a7129d80
|
@ -20,6 +20,3 @@ constexpr void hash_combine_impl(SizeT& seed, SizeT value) {
|
||||||
seed ^= value + 0x9e3779b9 + (seed<<6) + (seed>>2);
|
seed ^= value + 0x9e3779b9 + (seed<<6) + (seed>>2);
|
||||||
}
|
}
|
||||||
} // namespace zeus
|
} // 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))); }
|
|
||||||
|
|
Loading…
Reference in New Issue