summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-06-04 10:32:01 +0200
committerMax Kellermann <max@musicpd.org>2020-06-04 10:32:02 +0200
commitb7ab1a9d790d7df5e48314986c03109daf6976b3 (patch)
treee74c8ee851487742a393e2c8bcad6fe6d80a19f0 /test
parentd181ecce7b4e0dbce11538728f80c13c094b6c13 (diff)
test/meson.build: disable GTest warning "ScopedTrace was marked unused but was used"
Diffstat (limited to 'test')
-rw-r--r--test/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build
index e3f2a6fa6..25561f2ee 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -15,6 +15,10 @@ if compiler.get_id() == 'clang' and compiler.version().version_compare('>=9')
# work around clang warning caused by GTest's wrong "-lpthread"
# compiler flag
'-Wno-unused-command-line-argument',
+
+ # work around "error: 'ScopedTrace' was marked unused but was
+ # used"
+ '-Wno-used-but-marked-unused',
]
endif