mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user