List_TomlValue_destroyWithElements

This commit is contained in:
2025-12-21 20:26:00 +05:00
parent 559902eaf5
commit 5cb121d1de

View File

@@ -15,6 +15,6 @@ void TomlArray_free(TomlArray* self)
{
if(!self)
return;
List_TomlValue_destroy(self);
List_TomlValue_destroyWithElements(self, TomlValue_destroy);
free(self);
}