Update CLAP dependency to version 1.1.4

Version 1.1.3 changed the cv-qualification of the features array.
This commit is contained in:
Robbert van der Helm
2022-12-22 14:59:49 +01:00
parent 750e87c948
commit 5150332d20
6 changed files with 13 additions and 6 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ Descriptor::Descriptor(const clap_plugin_descriptor_t& original)
description(original.description ? std::optional(original.description)
: std::nullopt) {
// The features array is stored as an envp-style null terminated array
const char** orig_features = original.features;
const char* const* orig_features = original.features;
if (orig_features) {
while (*orig_features) {
features.push_back(*orig_features);