util/RuntimeError: Disable format-security for gcc

Fixes building under GCC 11
This commit is contained in:
Namkhai B 2021-05-22 21:32:23 -05:00 committed by Max Kellermann
parent d3a680cc87
commit dbe12a6b90
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
#include <stdio.h>
#ifdef __clang__
#if defined(__clang__) || defined(__GNUC__)
#pragma GCC diagnostic push
// TODO: fix this warning properly
#pragma GCC diagnostic ignored "-Wformat-security"
@ -59,7 +59,7 @@ FormatInvalidArgument(const char *fmt, Args&&... args) noexcept
return std::invalid_argument(buffer);
}
#ifdef __clang__
#if defined(__clang__) || defined(__GNUC__)
#pragma GCC diagnostic pop
#endif