summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client/mapblock_mesh.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/mapblock_mesh.cpp b/src/client/mapblock_mesh.cpp
index f9332e399..c7790f1e4 100644
--- a/src/client/mapblock_mesh.cpp
+++ b/src/client/mapblock_mesh.cpp
@@ -394,8 +394,10 @@ static void getNodeVertexDirs(const v3s16 &dir, v3s16 *vertex_dirs)
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic push
+#if __GNUC__ > 7
#pragma GCC diagnostic ignored "-Wclass-memaccess"
#endif
+#endif
memcpy(vertex_dirs, &vertex_dirs_table[idx], 4 * sizeof(v3s16));
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic pop