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
|
@ -323,7 +323,11 @@ public:
|
|||
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,
|
||||
|
|
Loading…
Reference in New Issue