summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Block.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/LV2Block.hpp')
-rw-r--r--src/server/LV2Block.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/LV2Block.hpp b/src/server/LV2Block.hpp
index e10775a0..07c04321 100644
--- a/src/server/LV2Block.hpp
+++ b/src/server/LV2Block.hpp
@@ -110,7 +110,7 @@ protected:
return (LilvInstance*)(*_instances)[voice]->instance;
}
- typedef Raul::Array< SPtr<Instance> > Instances;
+ using Instances = Raul::Array<SPtr<Instance>>;
void drop_instances(const MPtr<Instances>& instances) {
if (instances) {
@@ -139,10 +139,10 @@ protected:
void* const data;
};
- typedef boost::intrusive::slist<Response,
- boost::intrusive::cache_last<true>,
- boost::intrusive::constant_time_size<false>
- > Responses;
+ using Responses = boost::intrusive::slist<
+ Response,
+ boost::intrusive::cache_last<true>,
+ boost::intrusive::constant_time_size<false>>;
static LV2_Worker_Status work_respond(
LV2_Worker_Respond_Handle handle, uint32_t size, const void* data);