diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/LV2Features.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/LV2Features.hpp b/src/shared/LV2Features.hpp index cf771adc..1582adb5 100644 --- a/src/shared/LV2Features.hpp +++ b/src/shared/LV2Features.hpp @@ -46,7 +46,7 @@ public: public: typedef std::vector< SharedPtr<LV2_Feature> > FeatureVector; - FeatureArray(FeatureVector& features) + explicit FeatureArray(FeatureVector& features) : _features(features) { _array = (LV2_Feature**)malloc(sizeof(LV2_Feature) * (features.size() + 1)); |