From 18fd4bec97159cbaa7501a8a1b67540e0865e88b Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 16 Sep 2013 14:39:48 +0000 Subject: removed not needed _MSC_VER checks git-svn-id: http://svn.miranda-ng.org/main/trunk@6088 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dbx_tree/encryption/HC256/src/HC256.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'plugins/Dbx_tree/encryption/HC256/src') diff --git a/plugins/Dbx_tree/encryption/HC256/src/HC256.cpp b/plugins/Dbx_tree/encryption/HC256/src/HC256.cpp index 056b4e4dae..ea457cd4e3 100644 --- a/plugins/Dbx_tree/encryption/HC256/src/HC256.cpp +++ b/plugins/Dbx_tree/encryption/HC256/src/HC256.cpp @@ -24,11 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include -#ifndef _MSC_VER - #define rotr(x,n) (((x)>>(n))|((x)<<(32-(n)))) -#else - #define rotr(x,n) _lrotr(x,n) -#endif +#define rotr(x,n) _lrotr(x,n) #define h1(x,y) { \ uint8_t a,b,c,d; \ -- cgit v1.2.3