diff options
author | bunnei <bunneidev@gmail.com> | 2016-05-27 20:50:22 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-05-27 20:50:22 -0400 |
commit | a2c84d5779a80c61adbf07cfce6c37b0952fea84 (patch) | |
tree | f827a9867b44520907142600321c115d9e0cbe0f /src | |
parent | 031a9c57bba04c5e01a2ddcad0f48091a1ca88fc (diff) | |
parent | 8e1768cf1dc6aeb827018a652a218f6da2f4a3c3 (diff) |
Merge pull request #1857 from MerryMage/rotr-rotl
common_funcs: Provide rotr and rotl for MSVC
Diffstat (limited to 'src')
-rw-r--r-- | src/common/common_funcs.h | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index ab3515683..4633897ce 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -72,18 +72,24 @@ inline u64 _rotr64(u64 x, unsigned int shift){ } #else // _MSC_VER - #if (_MSC_VER < 1900) - // Function Cross-Compatibility - #define snprintf _snprintf - #endif - - // Locale Cross-Compatibility - #define locale_t _locale_t - - extern "C" { - __declspec(dllimport) void __stdcall DebugBreak(void); - } - #define Crash() {DebugBreak();} + +#if (_MSC_VER < 1900) + // Function Cross-Compatibility + #define snprintf _snprintf +#endif + +// Locale Cross-Compatibility +#define locale_t _locale_t + +extern "C" { + __declspec(dllimport) void __stdcall DebugBreak(void); +} +#define Crash() {DebugBreak();} + +// cstdlib provides these on MSVC +#define rotr _rotr +#define rotl _rotl + #endif // _MSC_VER ndef // Generic function to get last error message. |