diff options
author | Jean-Daniel Dupas <devlists@shadowlab.org> | 2013-12-09 22:52:50 +0000 |
---|---|---|
committer | Jean-Daniel Dupas <devlists@shadowlab.org> | 2013-12-09 22:52:50 +0000 |
commit | 7782de923ec6ccd5cd844615b6185cca78c23e9d (patch) | |
tree | c9162b0138f0bfa2d91c4daa3005244c8d8b1632 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | ce511f2fcb616bf3579278b061d27f4c5df6c751 (diff) | |
download | bcm5719-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.cpp | 2 |
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; |