diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2013-08-25 03:04:43 +0200 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2013-08-25 03:04:43 +0200 |
| commit | 0dd98d62fc9142f034150be469243533cfdb2fbf (patch) | |
| tree | 075d847cdc04f9f09ac4fbd6c2a9c024de344888 /Source/Core | |
| parent | c4dec3fb3af2f4adbeb46ff4ef59c935c87bc772 (diff) | |
Remove 'pragma optimize' in fakepoll.h - if optimizations cause breakage the breakage should be fixed instead of disabling opts
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Src/IPC_HLE/fakepoll.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/Core/Core/Src/IPC_HLE/fakepoll.h b/Source/Core/Core/Src/IPC_HLE/fakepoll.h index e5254592fd..384f0b5567 100644 --- a/Source/Core/Core/Src/IPC_HLE/fakepoll.h +++ b/Source/Core/Core/Src/IPC_HLE/fakepoll.h @@ -20,11 +20,6 @@ #ifndef _FAKE_POLL_H #define _FAKE_POLL_H -#ifdef _MSC_VER -#pragma warning(disable: 4748) -#pragma optimize("",off) -#endif - #include <limits.h> #include <sys/types.h> #include <stdlib.h> @@ -163,11 +158,6 @@ inline int poll(struct pollfd *pollSet, int pollCount, int pollTimeout) return result; } -#ifdef _MSC_VER -#pragma optimize("",on) -#endif - - #endif #else // (_WIN32_WINNT < _WIN32_WINNT_VISTA) |
