mirror of https://github.com/WerWolv/ImHex.git
fix: Compile errors on platforms that don't support -Wstringop-overread yet
This commit is contained in:
parent
088205385f
commit
7bf94ffe42
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
// TODO: Workaround for weird issue picked up by GCC 12.1.0 and later. This seems like a compiler bug mentioned in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98465
|
// TODO: Workaround for weird issue picked up by GCC 12.1.0 and later. This seems like a compiler bug mentioned in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98465
|
||||||
#pragma GCC diagnostic push
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wpragmas"
|
||||||
#pragma GCC diagnostic ignored "-Wrestrict"
|
#pragma GCC diagnostic ignored "-Wrestrict"
|
||||||
#pragma GCC diagnostic ignored "-Wstringop-overread"
|
#pragma GCC diagnostic ignored "-Wstringop-overread"
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
Loading…
Reference in New Issue