From 139967f339e3e4981ddaa12e65520215d97469dd Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 17 Jan 2018 23:20:04 +0100 Subject: [PATCH] Remove unnecessary std::move --- src/project.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.cc b/src/project.cc index 952e3ba..b80aa15 100644 --- a/src/project.cc +++ b/src/project.cc @@ -377,7 +377,7 @@ void Project::LLDB::debug_start() { startup_commands.emplace_back("type category enable Rust"); } } - Debug::LLDB::get().start(*run_arguments, *project_path, breakpoints, std::move(startup_commands), remote_host); + Debug::LLDB::get().start(*run_arguments, *project_path, breakpoints, startup_commands, remote_host); }); } });