mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-04 03:11:43 +00:00
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Tyler Veness <calcmogul@gmail.com>
|
|
Date: Tue, 16 May 2023 13:49:18 -0700
|
|
Subject: [PATCH] Suppress warnings we can't fix
|
|
|
|
---
|
|
include/fmt/format.h | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/include/fmt/format.h b/include/fmt/format.h
|
|
index 67f0ab739b0de55d03ab3e71424f1eb9e9c9bdfc..cf5ad9820683130ce9895f5d216d9b9efd0185ac 100644
|
|
--- a/include/fmt/format.h
|
|
+++ b/include/fmt/format.h
|
|
@@ -1276,7 +1276,14 @@ inline auto equal2(const char* lhs, const char* rhs) -> bool {
|
|
template <typename Char>
|
|
FMT_CONSTEXPR20 FMT_INLINE void copy2(Char* dst, const char* src) {
|
|
if (!is_constant_evaluated() && sizeof(Char) == sizeof(char)) {
|
|
+#if FMT_GCC_VERSION && FMT_GCC_VERSION >= 1000
|
|
+# pragma GCC diagnostic push
|
|
+# pragma GCC diagnostic ignored "-Wstringop-overflow"
|
|
+#endif
|
|
memcpy(dst, src, 2);
|
|
+#if FMT_GCC_VERSION && FMT_GCC_VERSION >= 1000
|
|
+# pragma GCC diagnostic pop
|
|
+#endif
|
|
return;
|
|
}
|
|
*dst++ = static_cast<Char>(*src++);
|