summaryrefslogtreecommitdiffstats
path: root/ingen/LV2Features.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-08 17:12:50 +0100
committerDavid Robillard <d@drobilla.net>2019-12-08 20:59:06 +0100
commitecad88d2128f920f5e11cc3ff443d62b225c79d3 (patch)
treec497cebca3455f4201f38d017db0f1566f8004f7 /ingen/LV2Features.hpp
parent4ca52683ce01f833c552aa62dd80a6a3e48e785c (diff)
downloadingen-ecad88d2128f920f5e11cc3ff443d62b225c79d3.tar.gz
ingen-ecad88d2128f920f5e11cc3ff443d62b225c79d3.tar.bz2
ingen-ecad88d2128f920f5e11cc3ff443d62b225c79d3.zip
Cleanup: Use "using" instead of "typedef" where appropriate
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;
};