diff options
Diffstat (limited to 'lldb/source/Target/Process.cpp')
-rw-r--r-- | lldb/source/Target/Process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 38622f0aa3e..aac93851596 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -2579,7 +2579,7 @@ Process::ReadModuleFromMemory (const FileSpec& file_spec, } Error -Process::EnableWatchpoint (Watchpoint *watchpoint) +Process::EnableWatchpoint (Watchpoint *watchpoint, bool notify) { Error error; error.SetErrorString("watchpoints are not supported"); @@ -2587,7 +2587,7 @@ Process::EnableWatchpoint (Watchpoint *watchpoint) } Error -Process::DisableWatchpoint (Watchpoint *watchpoint) +Process::DisableWatchpoint (Watchpoint *watchpoint, bool notify) { Error error; error.SetErrorString("watchpoints are not supported"); |