diff --git a/lldb/include/lldb/Interpreter/ScriptInterpreter.h b/lldb/include/lldb/Interpreter/ScriptInterpreter.h index 2213274f1dbfbc..69af88091a409d 100644 --- a/lldb/include/lldb/Interpreter/ScriptInterpreter.h +++ b/lldb/include/lldb/Interpreter/ScriptInterpreter.h @@ -323,7 +323,11 @@ class ScriptInterpreter : public PluginInterface { SetBreakpointCommandCallbackFunction( BreakpointOptions *bp_options, const char *function_name, - StructuredData::ObjectSP extra_args_sp) {} + StructuredData::ObjectSP extra_args_sp) { + Status error; + error.SetErrorString("unimplemented"); + return error; + } /// Set a one-liner as the callback for the watchpoint. virtual void SetWatchpointCommandCallback(WatchpointOptions *wp_options,