summaryrefslogtreecommitdiffstats
path: root/src/LV2Features.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LV2Features.cpp')
-rw-r--r--src/LV2Features.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LV2Features.cpp b/src/LV2Features.cpp
index 65fe6f6b..7d9003c0 100644
--- a/src/LV2Features.cpp
+++ b/src/LV2Features.cpp
@@ -71,7 +71,7 @@ LV2Features::lv2_features(World& world, Node* node) const
{
FeatureArray::FeatureVector vec;
for (const auto& f : _features) {
- std::shared_ptr<LV2_Feature> fptr = f->feature(world, node);
+ const std::shared_ptr<LV2_Feature> fptr = f->feature(world, node);
if (fptr) {
vec.push_back(fptr);
}