mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 04:20:13 +02:00
Replace const-rvalue with rvalue
Since const-rvalue doesn't make any sense.
This commit is contained in:
@@ -22,5 +22,5 @@ YaPlugView::ConstructArgs::ConstructArgs(
|
||||
Steinberg::IPtr<Steinberg::FUnknown> object) noexcept
|
||||
: supported(Steinberg::FUnknownPtr<Steinberg::IPlugView>(object)) {}
|
||||
|
||||
YaPlugView::YaPlugView(const ConstructArgs&& args) noexcept
|
||||
YaPlugView::YaPlugView(ConstructArgs&& args) noexcept
|
||||
: arguments(std::move(args)) {}
|
||||
|
||||
Reference in New Issue
Block a user