1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

LV2: Add clang-tidy warning suppression comments

This commit is contained in:
reuk 2025-09-09 13:33:34 +01:00
parent 0788df388b
commit e27183e044
2 changed files with 5 additions and 0 deletions

View file

@ -9,6 +9,7 @@ directory. The following modifications were made:
multiple times multiple times
- Fixed a leak of plugin classes when calling lilv_world_load_plugin_classes - Fixed a leak of plugin classes when calling lilv_world_load_plugin_classes
multiple times multiple times
- Added clang-tidy warning suppression comments to atom/util.h
Remember to update the versions in the config headers if you ever update the Remember to update the versions in the config headers if you ever update the
library versions! library versions!

View file

@ -17,6 +17,8 @@
#ifndef LV2_ATOM_UTIL_H #ifndef LV2_ATOM_UTIL_H
#define LV2_ATOM_UTIL_H #define LV2_ATOM_UTIL_H
// NOLINTBEGIN(clang-analyzer-security.ArrayBound)
/** /**
@file util.h Helper functions for the LV2 Atom extension. @file util.h Helper functions for the LV2 Atom extension.
@ -520,4 +522,6 @@ lv2_atom_object_get_typed(const LV2_Atom_Object* object, ...)
@} @}
*/ */
// NOLINTEND(clang-analyzer-security.ArrayBound)
#endif /* LV2_ATOM_UTIL_H */ #endif /* LV2_ATOM_UTIL_H */