Skip to content
This repository was archived by the owner on Jun 25, 2020. It is now read-only.

Commit 139967f

Browse files
committed
Remove unnecessary std::move
1 parent 8e76040 commit 139967f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/project.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ void Project::LLDB::debug_start() {
377377
startup_commands.emplace_back("type category enable Rust");
378378
}
379379
}
380-
Debug::LLDB::get().start(*run_arguments, *project_path, breakpoints, std::move(startup_commands), remote_host);
380+
Debug::LLDB::get().start(*run_arguments, *project_path, breakpoints, startup_commands, remote_host);
381381
});
382382
}
383383
});

0 commit comments

Comments
 (0)