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 --- src/server/DirectDriver.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/server/DirectDriver.hpp') diff --git a/src/server/DirectDriver.hpp b/src/server/DirectDriver.hpp index 945761e6..bb949a14 100644 --- a/src/server/DirectDriver.hpp +++ b/src/server/DirectDriver.hpp @@ -93,9 +93,8 @@ public: int real_time_priority() override { return 60; } private: - typedef boost::intrusive::slist - > Ports; + using Ports = boost::intrusive::slist>; Engine& _engine; Ports _ports; -- cgit v1.2.1