diff options
author | David Robillard <d@drobilla.net> | 2020-08-01 23:34:13 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-02 01:48:48 +0200 |
commit | b2ca9ab82aceefb3de27dfd5ea313916dfcdfcd9 (patch) | |
tree | 58bc6c36b575b120669bbb8344264dbc22d9667c /src | |
parent | 78a128618891865a698baa537dafbb631ce09295 (diff) | |
download | ingen-b2ca9ab82aceefb3de27dfd5ea313916dfcdfcd9.tar.gz ingen-b2ca9ab82aceefb3de27dfd5ea313916dfcdfcd9.tar.bz2 ingen-b2ca9ab82aceefb3de27dfd5ea313916dfcdfcd9.zip |
Remove unnecessary move
Diffstat (limited to 'src')
-rw-r--r-- | src/server/ControlBindings.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/ControlBindings.hpp b/src/server/ControlBindings.hpp index 8fff58ce..92128cb6 100644 --- a/src/server/ControlBindings.hpp +++ b/src/server/ControlBindings.hpp @@ -74,7 +74,7 @@ public: /** One binding of a controller to a port. */ struct Binding : public boost::intrusive::set_base_hook<>, public Raul::Maid::Disposable { - Binding(Key k=Key(), PortImpl* p=nullptr) : key(std::move(k)), port(p) {} + Binding(Key k=Key(), PortImpl* p=nullptr) : key(k), port(p) {} inline bool operator<(const Binding& rhs) const { return key < rhs.key; } |