Browse Source

Remove unnecessary std::move

merge-requests/365/head
eidheim 8 years ago
parent
commit
139967f339
  1. 2
      src/project.cc

2
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);
});
}
});

Loading…
Cancel
Save