Skip to content

Commit

Permalink
Merge pull request #617 from Tilka/clang_bug
Browse files Browse the repository at this point in the history
VideoCommon: fix clang version check
  • Loading branch information
shuffle2 committed Jul 14, 2014
2 parents 1464cfe + dbc30c6 commit 0c6eeaf
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
#ifdef __clang__ && (__clang_major__ * 100 + __clang_minor__ < 304)
#pragma clang diagnostic ignored "-Wshadow"
#endif

Expand Down

0 comments on commit 0c6eeaf

Please sign in to comment.