fix(logger): Add pragmas to silence GCC error
This commit is contained in:
parent
5edfe3729b
commit
2529ec0520
@ -153,10 +153,15 @@ class logger {
|
|||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
#pragma clang diagnostic ignored "-Wformat-security"
|
#pragma clang diagnostic ignored "-Wformat-security"
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wformat-security"
|
||||||
#endif
|
#endif
|
||||||
dprintf(m_fd, (prefix + format + suffix + "\n").c_str(), convert(values)...);
|
dprintf(m_fd, (prefix + format + suffix + "\n").c_str(), convert(values)...);
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang diagnostic pop
|
#pragma clang diagnostic pop
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user