Merge pull request #694 from lioncash/interp-defines

Core: Remove defines used to work around an MSVC 2005 bug
This commit is contained in:
Pierre Bourdon 2014-07-29 16:39:05 -07:00
commit f6fe299c31
1 changed files with 0 additions and 8 deletions

View File

@ -6,15 +6,7 @@
#include <limits>
#ifdef _WIN32
#define _interlockedbittestandset workaround_ms_header_bug_platform_sdk6_set
#define _interlockedbittestandreset workaround_ms_header_bug_platform_sdk6_reset
#define _interlockedbittestandset64 workaround_ms_header_bug_platform_sdk6_set64
#define _interlockedbittestandreset64 workaround_ms_header_bug_platform_sdk6_reset64
#include <intrin.h>
#undef _interlockedbittestandset
#undef _interlockedbittestandreset
#undef _interlockedbittestandset64
#undef _interlockedbittestandreset64
#endif
#include "Common/MathUtil.h"