From eeaa348f8bfafae1a6e56b857a97d9d23577dcac Mon Sep 17 00:00:00 2001 From: skidd13 Date: Tue, 20 Nov 2007 13:35:54 +0000 Subject: (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style --- src/helpers.hpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/helpers.hpp') diff --git a/src/helpers.hpp b/src/helpers.hpp index d7834c47d..e873d38ee 100644 --- a/src/helpers.hpp +++ b/src/helpers.hpp @@ -149,11 +149,6 @@ template struct TinyEnumT } }; -template void SetBitT(T &t, int bit_index) -{ - t = (T)(t | ((T)1 << bit_index)); -} - template void ToggleBitT(T &t, int bit_index) { t = (T)(t ^ ((T)1 << bit_index)); -- cgit v1.2.3-54-g00ecf