mirror of https://github.com/PCSX2/pcsx2.git
gsdx: Fix unknown pragma clang warnings.
This commit is contained in:
parent
96b02be1d1
commit
6f09cd9b81
|
@ -20,8 +20,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#ifdef __clang__
|
||||||
// Ignore format for this file, as it spams a lot of warnings about uint64 and %llu.
|
// Ignore format for this file, as it spams a lot of warnings about uint64 and %llu.
|
||||||
#pragma clang diagnostic ignored "-Wformat"
|
#pragma clang diagnostic ignored "-Wformat"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "GS.h"
|
#include "GS.h"
|
||||||
#include "GSLocalMemory.h"
|
#include "GSLocalMemory.h"
|
||||||
|
|
Loading…
Reference in New Issue