summaryrefslogtreecommitdiffstats
path: root/ingen/Tee.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/Tee.hpp')
-rw-r--r--ingen/Tee.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/Tee.hpp b/ingen/Tee.hpp
index 153a3d4b..bf3fd335 100644
--- a/ingen/Tee.hpp
+++ b/ingen/Tee.hpp
@@ -32,7 +32,7 @@ namespace ingen {
class Tee : public Interface
{
public:
- typedef std::vector<SPtr<Interface>> Sinks;
+ using Sinks = std::vector<SPtr<Interface>>;
explicit Tee(Sinks sinks) : _sinks(std::move(sinks)) {}