diff options
Diffstat (limited to 'plugins/Dbx_tree/src/SHA256.cpp')
-rw-r--r-- | plugins/Dbx_tree/src/SHA256.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/Dbx_tree/src/SHA256.cpp b/plugins/Dbx_tree/src/SHA256.cpp index d0b16f907f..f612eab22b 100644 --- a/plugins/Dbx_tree/src/SHA256.cpp +++ b/plugins/Dbx_tree/src/SHA256.cpp @@ -30,11 +30,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #endif
#define SHA_LOOPUNROLL
-#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)
// table of round constants
|