Replace const-rvalue with rvalue

Since const-rvalue doesn't make any sense.
This commit is contained in:
Robbert van der Helm
2021-07-05 16:39:11 +02:00
parent 1397400155
commit 4e4bbe1ba4
95 changed files with 96 additions and 98 deletions
@@ -23,5 +23,5 @@ YaEditController2::ConstructArgs::ConstructArgs(
: supported(
Steinberg::FUnknownPtr<Steinberg::Vst::IEditController2>(object)) {}
YaEditController2::YaEditController2(const ConstructArgs&& args) noexcept
YaEditController2::YaEditController2(ConstructArgs&& args) noexcept
: arguments(std::move(args)) {}