VideoCommon: fix clang version check

That was... er... a typo!
This commit is contained in:
Tillmann Karras 2014-07-14 02:59:31 +02:00
parent b6f3ae23bc
commit 0be03252cc
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;
// 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