mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-17 17:43:13 +00:00
VideoCommon: fix ifdef expression
This commit is contained in:
parent
c2cdc93515
commit
4063694d20
@ -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__ && (__clang_major__ * 100 + __clang_minor__ < 304)
|
#if defined(__clang__) && (__clang_major__ * 100 + __clang_minor__ < 304)
|
||||||
#pragma clang diagnostic ignored "-Wshadow"
|
#pragma clang diagnostic ignored "-Wshadow"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user