diff options
author | David Robillard <d@drobilla.net> | 2017-12-25 16:13:15 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-25 16:26:13 -0500 |
commit | bd89362f08dc07b3444d19bc373f2b4f8bc47b2c (patch) | |
tree | 047cd2cf2779d87f1db561186410aa545f632c7b /ingen/client | |
parent | 71808f61f7db48a7ab4e16537b94ee5686749909 (diff) | |
download | ingen-bd89362f08dc07b3444d19bc373f2b4f8bc47b2c.tar.gz ingen-bd89362f08dc07b3444d19bc373f2b4f8bc47b2c.tar.bz2 ingen-bd89362f08dc07b3444d19bc373f2b4f8bc47b2c.zip |
Use std::move to potentially avoid copying
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/ArcModel.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/client/ArcModel.hpp b/ingen/client/ArcModel.hpp index 13cf1c92..8b129a00 100644 --- a/ingen/client/ArcModel.hpp +++ b/ingen/client/ArcModel.hpp @@ -48,8 +48,8 @@ private: friend class ClientStore; ArcModel(SPtr<PortModel> tail, SPtr<PortModel> head) - : _tail(tail) - , _head(head) + : _tail(std::move(tail)) + , _head(std::move(head)) { assert(_tail); assert(_head); |