From e8ac3c9ed74443cc117dae89adc7a22cb76b3db1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 23 Aug 2023 11:14:09 -0400 Subject: Suppress clang-tidy warning --- include/lilv/lilv.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/lilv/lilv.h b/include/lilv/lilv.h index b863a14..20274f9 100644 --- a/include/lilv/lilv.h +++ b/include/lilv/lilv.h @@ -386,6 +386,7 @@ lilv_node_as_bool(const LilvNode* value); @endcode */ #define LILV_FOREACH(colltype, iter, collection) \ + /* NOLINTNEXTLINE(bugprone-macro-parentheses) */ \ for (LilvIter* iter = lilv_##colltype##_begin(collection); \ !lilv_##colltype##_is_end(collection, iter); \ (iter) = lilv_##colltype##_next(collection, iter)) -- cgit v1.2.1