diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-07-14 22:50:31 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-07-14 22:50:31 -0400 |
| commit | 8428a474df5ddf4576a64ad58a2b562eaddd0dea (patch) | |
| tree | 5af377c3ea0ed027efe764489462de3259fb89bb /Source/Core/VideoCommon/TextureDecoder_x64.cpp | |
| parent | c2cdc93515e64b066896ac702a14770791a07a62 (diff) | |
| parent | 4063694d20729d70b277930da55e5b70296716db (diff) | |
Merge pull request #628 from Tilka/clang_bug
VideoCommon: fix ifdef expression
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 883837e6fd..0edfbc0b45 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) +#if defined(__clang__) && (__clang_major__ * 100 + __clang_minor__ < 304) #pragma clang diagnostic ignored "-Wshadow" #endif |
