summaryrefslogtreecommitdiffstats
path: root/src/server/DirectDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/DirectDriver.hpp')
-rw-r--r--src/server/DirectDriver.hpp5
1 files changed, 2 insertions, 3 deletions
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<EnginePort,
- boost::intrusive::cache_last<true>
- > Ports;
+ using Ports = boost::intrusive::slist<EnginePort,
+ boost::intrusive::cache_last<true>>;
Engine& _engine;
Ports _ports;