summaryrefslogtreecommitdiffstats
path: root/ingen/LV2Features.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/LV2Features.hpp')
-rw-r--r--ingen/LV2Features.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/LV2Features.hpp b/ingen/LV2Features.hpp
index 9508bd82..e2ce600f 100644
--- a/ingen/LV2Features.hpp
+++ b/ingen/LV2Features.hpp
@@ -65,7 +65,7 @@ protected:
class FeatureArray : public Raul::Noncopyable {
public:
- typedef std::vector< SPtr<LV2_Feature> > FeatureVector;
+ using FeatureVector = std::vector<SPtr<LV2_Feature>>;
explicit FeatureArray(FeatureVector& features);
@@ -84,7 +84,7 @@ protected:
SPtr<FeatureArray> lv2_features(World& world, Node* node) const;
private:
- typedef std::vector< SPtr<Feature> > Features;
+ using Features = std::vector<SPtr<Feature>>;
Features _features;
};