summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
diff options
context:
space:
mode:
authorJean-Daniel Dupas <devlists@shadowlab.org>2013-12-09 22:52:50 +0000
committerJean-Daniel Dupas <devlists@shadowlab.org>2013-12-09 22:52:50 +0000
commit7782de923ec6ccd5cd844615b6185cca78c23e9d (patch)
treec9162b0138f0bfa2d91c4daa3005244c8d8b1632 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
parentce511f2fcb616bf3579278b061d27f4c5df6c751 (diff)
downloadbcm5719-llvm-7782de923ec6ccd5cd844615b6185cca78c23e9d.tar.gz
bcm5719-llvm-7782de923ec6ccd5cd844615b6185cca78c23e9d.zip
Remove 'const' constraint on ProcessLaunchInfo parameter in Process::DoLaunch().
This 'const' is not required and prevent us to defer the launch to the Host layer. llvm-svn: 196837
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index 61eabbffc80..19accab76bb 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -662,7 +662,7 @@ ProcessGDBRemote::WillLaunchOrAttach ()
// Process Control
//----------------------------------------------------------------------
Error
-ProcessGDBRemote::DoLaunch (Module *exe_module, const ProcessLaunchInfo &launch_info)
+ProcessGDBRemote::DoLaunch (Module *exe_module, ProcessLaunchInfo &launch_info)
{
Error error;
OpenPOWER on IntegriCloud