summaryrefslogtreecommitdiffstats
path: root/src/LV2Features.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LV2Features.cpp')
-rw-r--r--src/LV2Features.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/LV2Features.cpp b/src/LV2Features.cpp
index fe2304a2..048dc13f 100644
--- a/src/LV2Features.cpp
+++ b/src/LV2Features.cpp
@@ -79,7 +79,8 @@ LV2Features::lv2_features(World& world, Node* node) const
vec.push_back(fptr);
}
}
- return SPtr<FeatureArray>(new FeatureArray(vec));
+
+ return std::make_shared<FeatureArray>(vec);
}
} // namespace ingen