forked from OSchip/llvm-project
Fix after 738af7a624
Default implementation of a new virtual method wasn't returning a value.
This commit is contained in:
parent
6c89392592
commit
5a3c657f3e
lldb/include/lldb/Interpreter
|
@ -323,7 +323,11 @@ public:
|
||||||
SetBreakpointCommandCallbackFunction(
|
SetBreakpointCommandCallbackFunction(
|
||||||
BreakpointOptions *bp_options,
|
BreakpointOptions *bp_options,
|
||||||
const char *function_name,
|
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.
|
/// Set a one-liner as the callback for the watchpoint.
|
||||||
virtual void SetWatchpointCommandCallback(WatchpointOptions *wp_options,
|
virtual void SetWatchpointCommandCallback(WatchpointOptions *wp_options,
|
||||||
|
|
Loading…
Reference in New Issue