diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2014-07-14 03:05:56 +0200 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2014-07-14 03:05:56 +0200 |
| commit | dbc30c6c763566161e52bbbe387bad2465868598 (patch) | |
| tree | 94beb8bccbaca7f9bdcecc3b181abc1dfdab1e4a /Source/Core/VideoCommon/TextureDecoder_x64.cpp | |
| parent | 0be03252ccec34c315d3be4309442f3b93b4851b (diff) | |
VideoCommon: make version check easier to read
Diffstat (limited to 'Source/Core/VideoCommon/TextureDecoder_x64.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureDecoder_x64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TextureDecoder_x64.cpp b/Source/Core/VideoCommon/TextureDecoder_x64.cpp index 82123ac91e..883837e6fd 100644 --- a/Source/Core/VideoCommon/TextureDecoder_x64.cpp +++ b/Source/Core/VideoCommon/TextureDecoder_x64.cpp @@ -28,7 +28,7 @@ // This avoids a harmless warning from a system header in Clang; // see http://llvm.org/bugs/show_bug.cgi?id=16093 -#ifdef __clang__ && __clang_major__ * 100 + __clang_minor__ < 304 +#ifdef __clang__ && (__clang_major__ * 100 + __clang_minor__ < 304) #pragma clang diagnostic ignored "-Wshadow" #endif |
