aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Ryan <jeffreyryan@tutanota.com>2022-05-16 19:13:02 -0500
committerJeffrey Ryan <jeffreyryan@tutanota.com>2022-05-16 19:13:02 -0500
commit5858f05f9bbbcfeca77cda249d26fe05bca5cc38 (patch)
tree7bcfeced0a3e8de969408dc3de441de8e256f85b
parentMerge pull request #8315 (diff)
downloadmonero-5858f05f9bbbcfeca77cda249d26fe05bca5cc38.tar.xz
GCC: Fix -Wstringop-overflow= warnings
Resolves #8320
-rw-r--r--external/boost/archive/portable_binary_archive.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/external/boost/archive/portable_binary_archive.hpp b/external/boost/archive/portable_binary_archive.hpp
index 7ae01a225..cdbd38aad 100644
--- a/external/boost/archive/portable_binary_archive.hpp
+++ b/external/boost/archive/portable_binary_archive.hpp
@@ -44,9 +44,12 @@ reverse_bytes(signed char size, char *address){
char * first = address;
char * last = first + size - 1;
for(;first < last;++first, --last){
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wstringop-overflow="
char x = *last;
*last = *first;
*first = x;
+#pragma GCC diagnostic pop
}
}