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/ControlBindings.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/server/ControlBindings.hpp') diff --git a/src/server/ControlBindings.hpp b/src/server/ControlBindings.hpp index 9ac08a7a..3a39c664 100644 --- a/src/server/ControlBindings.hpp +++ b/src/server/ControlBindings.hpp @@ -118,9 +118,9 @@ public: void remove(RunContext& ctx, const std::vector& bindings); private: - typedef boost::intrusive::multiset< - Binding, - boost::intrusive::compare > Bindings; + using Bindings = + boost::intrusive::multiset>; Key midi_event_key(uint16_t size, const uint8_t* buf, uint16_t& value); -- cgit v1.2.1