Skip to content

Commit

Permalink
Merge pull request #611 from Tilka/clang_bug
Browse files Browse the repository at this point in the history
VideoCommon: version-check clang for workaround
  • Loading branch information
shuffle2 committed Jul 14, 2014
2 parents 5c701f6 + b6f3ae2 commit 3f67ec0
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__
#ifdef __clang__ && __clang_major__ * 100 + __clang_minor__ <= 304
#pragma clang diagnostic ignored "-Wshadow"
#endif

Expand Down

0 comments on commit 3f67ec0

Please sign in to comment.