Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #628 from Tilka/clang_bug
VideoCommon: fix ifdef expression
  • Loading branch information
lioncash committed Jul 15, 2014
2 parents c2cdc93 + 4063694 commit 8428a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/TextureDecoder_x64.cpp
Expand Up @@ -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

Expand Down

0 comments on commit 8428a47

Please sign in to comment.