Skip to content

Commit e27183e

Browse files
committed
LV2: Add clang-tidy warning suppression comments
1 parent 0788df3 commit e27183e

File tree

2 files changed

+5
-0
lines changed
  • modules/juce_audio_processors/format_types/LV2_SDK

2 files changed

+5
-0
lines changed

modules/juce_audio_processors/format_types/LV2_SDK/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ directory. The following modifications were made:
99
multiple times
1010
- Fixed a leak of plugin classes when calling lilv_world_load_plugin_classes
1111
multiple times
12+
- Added clang-tidy warning suppression comments to atom/util.h
1213

1314
Remember to update the versions in the config headers if you ever update the
1415
library versions!

modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/util.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#ifndef LV2_ATOM_UTIL_H
1818
#define LV2_ATOM_UTIL_H
1919

20+
// NOLINTBEGIN(clang-analyzer-security.ArrayBound)
21+
2022
/**
2123
@file util.h Helper functions for the LV2 Atom extension.
2224
@@ -520,4 +522,6 @@ lv2_atom_object_get_typed(const LV2_Atom_Object* object, ...)
520522
@}
521523
*/
522524

525+
// NOLINTEND(clang-analyzer-security.ArrayBound)
526+
523527
#endif /* LV2_ATOM_UTIL_H */

0 commit comments

Comments
 (0)