File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
modules/juce_audio_processors/format_types/LV2_SDK Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff 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
1314Remember to update the versions in the config headers if you ever update the
1415library versions!
Original file line number Diff line number Diff line change 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 */
You can’t perform that action at this time.
0 commit comments