Add missing overrides to fix the clang -Werror build (-Winconsistent-missing-override)

llvm-svn: 232504
This commit is contained in:
David Blaikie 2015-03-17 17:26:41 +00:00
parent 6a22175d59
commit 7d3cf0062a
1 changed files with 4 additions and 4 deletions

View File

@ -91,16 +91,16 @@ namespace lldb_private
WriteAllRegisterValues (const lldb::DataBufferSP &data_sp) override;
Error
IsWatchpointHit (uint8_t wp_index);
IsWatchpointHit (uint8_t wp_index) override;
Error
IsWatchpointVacant (uint32_t wp_index);
IsWatchpointVacant (uint32_t wp_index) override;
bool
ClearHardwareWatchpoint (uint32_t wp_index) override;
Error
ClearAllHardwareWatchpoints ();
ClearAllHardwareWatchpoints () override;
Error
SetHardwareWatchpointWithIndex (lldb::addr_t addr, size_t size,
@ -111,7 +111,7 @@ namespace lldb_private
uint32_t watch_flags) override;
lldb::addr_t
GetWatchpointAddress (uint32_t wp_index);
GetWatchpointAddress (uint32_t wp_index) override;
uint32_t
NumSupportedHardwareWatchpoints () override;