diff options
Diffstat (limited to 'src/server/InputPort.hpp')
-rw-r--r-- | src/server/InputPort.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/InputPort.hpp b/src/server/InputPort.hpp index 550a787d..35ddb2b9 100644 --- a/src/server/InputPort.hpp +++ b/src/server/InputPort.hpp @@ -67,9 +67,9 @@ public: const Atom& value, size_t buffer_size = 0); - typedef boost::intrusive::slist<ArcImpl, - boost::intrusive::constant_time_size<true> - > Arcs; + using Arcs = + boost::intrusive::slist<ArcImpl, + boost::intrusive::constant_time_size<true>>; /** Return the maximum polyphony of an output connected to this input. */ virtual uint32_t max_tail_poly(RunContext& context) const; |