summaryrefslogtreecommitdiff
path: root/src/unittest/test_irrptr.cpp
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2021-12-01 18:30:40 -0500
committerrubenwardy <rw@rubenwardy.com>2022-04-08 14:55:21 +0100
commit5683bb76cc3a60d952c9f58c41adaa5f195dd3f4 (patch)
tree86154779a5a23b1385a8e6872a7c3d79da51847d /src/unittest/test_irrptr.cpp
parent3a87fab6c899afa50b2b7615b882d0a81b922832 (diff)
downloadminetest-5683bb76cc3a60d952c9f58c41adaa5f195dd3f4.tar.gz
minetest-5683bb76cc3a60d952c9f58c41adaa5f195dd3f4.tar.bz2
minetest-5683bb76cc3a60d952c9f58c41adaa5f195dd3f4.zip
Fix compiler warnings
Diffstat (limited to 'src/unittest/test_irrptr.cpp')
-rw-r--r--src/unittest/test_irrptr.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/unittest/test_irrptr.cpp b/src/unittest/test_irrptr.cpp
index 3484f1514..2fb7cfcd6 100644
--- a/src/unittest/test_irrptr.cpp
+++ b/src/unittest/test_irrptr.cpp
@@ -93,7 +93,9 @@ void TestIrrPtr::testRefCounting()
#if defined(__clang__)
#pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wself-assign-overloaded"
+ #if __clang_major__ >= 7
+ #pragma GCC diagnostic ignored "-Wself-assign-overloaded"
+ #endif
#pragma GCC diagnostic ignored "-Wself-move"
#endif