Remove std::move
Found by clang-tidy.
/home/vk/git/velia/src/utils/exec.cpp:46:34: warning: std::move of the variable 'args' of the trivially-copyable type 'std::initializer_list<std::string>' (aka 'initializer_list<basic_string<char>>') has no effect; remove std::move() [hicpp-move-const-arg]
boost::process::args=std::move(args),
Change-Id: I83e56eac0499d269532deedca1be89378fe9a248
diff --git a/src/utils/exec.cpp b/src/utils/exec.cpp
index 1d45a3f..c7362bc 100644
--- a/src/utils/exec.cpp
+++ b/src/utils/exec.cpp
@@ -43,7 +43,7 @@
logger->trace("exec: {} {}", absolutePath, boost::algorithm::join(args, " "));
bp::child c(
absolutePath,
- boost::process::args=std::move(args),
+ boost::process::args=args,
bp::std_in < stdinPipe, bp::std_out > stdoutStream, bp::std_err > stderrStream,
bp::extend::on_exec_setup=onExecSetup);