diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-22 21:35:05 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-22 21:36:03 -0800 |
commit | 1562511275fe1f002458194c085216cf9ae36d1f (patch) | |
tree | 39e276d5747f75fde7160accbe63109df1ae1c6e /lldb/source/Interpreter/ScriptInterpreter.cpp | |
parent | b449d19e55888ab9554b04184c6d9716389820fd (diff) | |
download | bcm5719-llvm-1562511275fe1f002458194c085216cf9ae36d1f.tar.gz bcm5719-llvm-1562511275fe1f002458194c085216cf9ae36d1f.zip |
[lldb/ScriptInterpreter] Remove can_reload which is always true (NFC)
The `-r` option for `command script import` is there for legacy
compatibility, however the can_reload flag is always set to true. This
patch removes the flag and any code that relies on it being false.
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp index c7207db5523..208630dfbdb 100644 --- a/lldb/source/Interpreter/ScriptInterpreter.cpp +++ b/lldb/source/Interpreter/ScriptInterpreter.cpp @@ -43,8 +43,8 @@ void ScriptInterpreter::CollectDataForWatchpointCommandCallback( } bool ScriptInterpreter::LoadScriptingModule( - const char *filename, bool can_reload, bool init_session, - lldb_private::Status &error, StructuredData::ObjectSP *module_sp) { + const char *filename, bool init_session, lldb_private::Status &error, + StructuredData::ObjectSP *module_sp) { error.SetErrorString( "This script interpreter does not support importing modules."); return false; |