bindings: cxx: remove superfluous std::move
authorDavid Kozub <zub@linux.fjfi.cvut.cz>
Thu, 28 Mar 2019 23:27:28 +0000 (00:27 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 29 Mar 2019 09:41:24 +0000 (10:41 +0100)
commit1fd1e271b720cdb182fd11ea860657043ce8186a
tree18c173a246d6d6712eff0af9c820c73c08a5af62
parentf69ce9f731ddc805fe7b092376017b2c98a158c2
bindings: cxx: remove superfluous std::move

There is no need to use std::move on an r-value (e.g.
std::move(gpiod::chip())). Similarly, there is no need to use std::move
for returning a local variable as in:

T foo()
{
    U local;
    return std::move(local);
}

Not only it doesn't help, it actually inhibits named return value
optimization.

See e.g. https://isocpp.org/blog/2013/02/no-really-moving-a-return-value-is-easy-stackoverflow

Signed-off-by: David Kozub <zub@linux.fjfi.cvut.cz>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/cxx/chip.cpp
bindings/cxx/iter.cpp
bindings/cxx/line.cpp
bindings/cxx/line_bulk.cpp