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/POSIX | |
| 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/POSIX')
| -rw-r--r-- | lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp | 2 | ||||
| -rw-r--r-- | lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp index 8cfd9d614cc..0be86851c2f 100644 --- a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp +++ b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp @@ -200,7 +200,7 @@ ProcessPOSIX::GetFilePath( Error ProcessPOSIX::DoLaunch (Module *module, - const ProcessLaunchInfo &launch_info) + ProcessLaunchInfo &launch_info) { Error error; assert(m_monitor == NULL); diff --git a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h index 8b30498b80f..ca6f3ba9cb5 100644 --- a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h +++ b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.h @@ -58,7 +58,7 @@ public: virtual lldb_private::Error DoLaunch (lldb_private::Module *exe_module, - const lldb_private::ProcessLaunchInfo &launch_info); + lldb_private::ProcessLaunchInfo &launch_info); virtual void DidLaunch(); |

