summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/ScriptInterpreterNone.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterNone.cpp')
-rw-r--r--lldb/source/Interpreter/ScriptInterpreterNone.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterNone.cpp b/lldb/source/Interpreter/ScriptInterpreterNone.cpp
index c9bd2827fc9..dad70aa93d5 100644
--- a/lldb/source/Interpreter/ScriptInterpreterNone.cpp
+++ b/lldb/source/Interpreter/ScriptInterpreterNone.cpp
@@ -25,10 +25,11 @@ ScriptInterpreterNone::~ScriptInterpreterNone ()
{
}
-void
-ScriptInterpreterNone::ExecuteOneLine (CommandInterpreter &interpreter, const char *command)
+bool
+ScriptInterpreterNone::ExecuteOneLine (CommandInterpreter &interpreter, const char *command, CommandReturnObject *)
{
interpreter.GetDebugger().GetErrorStream().PutCString ("error: there is no embedded script interpreter in this mode.\n");
+ return false;
}
void
OpenPOWER on IntegriCloud