From 76a7129d809703fdd01e513dca648461b82d1158 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 4 Sep 2019 10:37:18 -0400 Subject: [PATCH] Global: Remove unused rotr/rotl functions These don't appear to be used by anything, so they can be removed. --- include/zeus/Global.hpp | 3 --- 1 file changed, 3 deletions(-) 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))); }