diff options
Diffstat (limited to 'source/Host/common/NativeWatchpointList.cpp')
| -rw-r--r-- | source/Host/common/NativeWatchpointList.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/source/Host/common/NativeWatchpointList.cpp b/source/Host/common/NativeWatchpointList.cpp index 168e5b42b961..e6ef7300eb22 100644 --- a/source/Host/common/NativeWatchpointList.cpp +++ b/source/Host/common/NativeWatchpointList.cpp @@ -14,15 +14,15 @@  using namespace lldb;  using namespace lldb_private; -Error NativeWatchpointList::Add(addr_t addr, size_t size, uint32_t watch_flags, -                                bool hardware) { +Status NativeWatchpointList::Add(addr_t addr, size_t size, uint32_t watch_flags, +                                 bool hardware) {    m_watchpoints[addr] = {addr, size, watch_flags, hardware}; -  return Error(); +  return Status();  } -Error NativeWatchpointList::Remove(addr_t addr) { +Status NativeWatchpointList::Remove(addr_t addr) {    m_watchpoints.erase(addr); -  return Error(); +  return Status();  }  const NativeWatchpointList::WatchpointMap &  | 
