summaryrefslogtreecommitdiffstats
path: root/include/lilv/lilv.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-08-23 11:14:09 -0400
committerDavid Robillard <d@drobilla.net>2023-08-23 11:14:09 -0400
commite8ac3c9ed74443cc117dae89adc7a22cb76b3db1 (patch)
tree2e0df4cb04f5ad71e6615d0394ec9e7e5dc10db0 /include/lilv/lilv.h
parent54b32c1949d60225602a7161d5d6c4853230307a (diff)
downloadlilv-e8ac3c9ed74443cc117dae89adc7a22cb76b3db1.tar.gz
lilv-e8ac3c9ed74443cc117dae89adc7a22cb76b3db1.tar.bz2
lilv-e8ac3c9ed74443cc117dae89adc7a22cb76b3db1.zip
Suppress clang-tidy warning
Diffstat (limited to 'include/lilv/lilv.h')
-rw-r--r--include/lilv/lilv.h1
1 files changed, 1 insertions, 0 deletions
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))