diff options
author | David Robillard <d@drobilla.net> | 2023-08-23 11:14:09 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-08-23 11:14:09 -0400 |
commit | e8ac3c9ed74443cc117dae89adc7a22cb76b3db1 (patch) | |
tree | 2e0df4cb04f5ad71e6615d0394ec9e7e5dc10db0 /include/lilv | |
parent | 54b32c1949d60225602a7161d5d6c4853230307a (diff) | |
download | lilv-e8ac3c9ed74443cc117dae89adc7a22cb76b3db1.tar.gz lilv-e8ac3c9ed74443cc117dae89adc7a22cb76b3db1.tar.bz2 lilv-e8ac3c9ed74443cc117dae89adc7a22cb76b3db1.zip |
Suppress clang-tidy warning
Diffstat (limited to 'include/lilv')
-rw-r--r-- | include/lilv/lilv.h | 1 |
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)) |