mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-12 15:22:14 +02:00
Replace const-rvalue with rvalue
Since const-rvalue doesn't make any sense.
This commit is contained in:
@@ -31,7 +31,7 @@ Vst3ComponentHandlerProxy::ConstructArgs::ConstructArgs(
|
||||
unit_handler_2_args(object) {}
|
||||
|
||||
Vst3ComponentHandlerProxy::Vst3ComponentHandlerProxy(
|
||||
const ConstructArgs&& args) noexcept
|
||||
ConstructArgs&& args) noexcept
|
||||
: YaComponentHandler(std::move(args.component_handler_args)),
|
||||
YaComponentHandler2(std::move(args.component_handler_2_args)),
|
||||
YaComponentHandler3(std::move(args.component_handler_3_args)),
|
||||
|
||||
Reference in New Issue
Block a user