mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 20:10:13 +02:00
Replace const-rvalue with rvalue
Since const-rvalue doesn't make any sense.
This commit is contained in:
@@ -16,9 +16,8 @@
|
||||
|
||||
#include "context-menu-target.h"
|
||||
|
||||
YaContextMenuTargetImpl::YaContextMenuTargetImpl(
|
||||
Vst3PluginBridge& bridge,
|
||||
const ConstructArgs&& args) noexcept
|
||||
YaContextMenuTargetImpl::YaContextMenuTargetImpl(Vst3PluginBridge& bridge,
|
||||
ConstructArgs&& args) noexcept
|
||||
: YaContextMenuTarget(std::move(args)), bridge(bridge) {}
|
||||
|
||||
tresult PLUGIN_API
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
class YaContextMenuTargetImpl : public YaContextMenuTarget {
|
||||
public:
|
||||
YaContextMenuTargetImpl(Vst3PluginBridge& bridge,
|
||||
const ConstructArgs&& args) noexcept;
|
||||
ConstructArgs&& args) noexcept;
|
||||
|
||||
/**
|
||||
* We'll override the query interface to log queries for interfaces we do
|
||||
|
||||
Reference in New Issue
Block a user