Merge pull request #611 from Tilka/clang_bug

VideoCommon: version-check clang for workaround
This commit is contained in:
shuffle2 2014-07-13 17:52:54 -07:00
commit 3f67ec0d50
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
// This avoids a harmless warning from a system header in Clang; // This avoids a harmless warning from a system header in Clang;
// see http://llvm.org/bugs/show_bug.cgi?id=16093 // 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" #pragma clang diagnostic ignored "-Wshadow"
#endif #endif