Merge pull request #3107 from lioncash/pragma
TextureDecoder_x64: Remove now-unnecessary clang #pragma warning suppression
This commit is contained in:
commit
16957fcaec
|
@ -6,7 +6,6 @@
|
|||
#include <cmath>
|
||||
|
||||
#include "Common/Common.h"
|
||||
//#include "VideoCommon.h" // to get debug logs
|
||||
#include "Common/CPUDetect.h"
|
||||
#include "Common/Intrinsics.h"
|
||||
|
||||
|
@ -14,12 +13,6 @@
|
|||
#include "VideoCommon/TextureDecoder.h"
|
||||
#include "VideoCommon/VideoConfig.h"
|
||||
|
||||
// This avoids a harmless warning from a system header in Clang;
|
||||
// see http://llvm.org/bugs/show_bug.cgi?id=16093
|
||||
#if defined(__clang__) && (__clang_major__ * 100 + __clang_minor__ < 304)
|
||||
#pragma clang diagnostic ignored "-Wshadow"
|
||||
#endif
|
||||
|
||||
// GameCube/Wii texture decoder
|
||||
|
||||
// Decodes all known GameCube/Wii texture formats.
|
||||
|
|
Loading…
Reference in New Issue