From ecad88d2128f920f5e11cc3ff443d62b225c79d3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Dec 2019 17:12:50 +0100 Subject: Cleanup: Use "using" instead of "typedef" where appropriate --- ingen/LV2Features.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ingen/LV2Features.hpp') 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 > FeatureVector; + using FeatureVector = std::vector>; explicit FeatureArray(FeatureVector& features); @@ -84,7 +84,7 @@ protected: SPtr lv2_features(World& world, Node* node) const; private: - typedef std::vector< SPtr > Features; + using Features = std::vector>; Features _features; }; -- cgit v1.2.1