Fix four missing 'override' specifiers found with the Clang

'-Winconsistent-missing-override' warning. I suggest folks use this to
ensure that override is consistently used to mark virtual function
overrides.

llvm-svn: 229084
This commit is contained in:
Chandler Carruth 2015-02-13 08:07:00 +00:00
parent f7888ab386
commit 40927d0dcd
1 changed files with 4 additions and 4 deletions

View File

@ -49,10 +49,10 @@ namespace lldb_private
IsWatchpointVacant(uint32_t wp_index); IsWatchpointVacant(uint32_t wp_index);
bool bool
ClearHardwareWatchpoint(uint32_t wp_index); ClearHardwareWatchpoint(uint32_t wp_index) override;
Error Error
ClearAllHardwareWatchpoints (); ClearAllHardwareWatchpoints () override;
Error Error
SetHardwareWatchpointWithIndex(lldb::addr_t addr, size_t size, SetHardwareWatchpointWithIndex(lldb::addr_t addr, size_t size,
@ -60,13 +60,13 @@ namespace lldb_private
uint32_t uint32_t
SetHardwareWatchpoint(lldb::addr_t addr, size_t size, SetHardwareWatchpoint(lldb::addr_t addr, size_t size,
uint32_t watch_flags); uint32_t watch_flags) override;
lldb::addr_t lldb::addr_t
GetWatchpointAddress(uint32_t wp_index); GetWatchpointAddress(uint32_t wp_index);
uint32_t uint32_t
NumSupportedHardwareWatchpoints(); NumSupportedHardwareWatchpoints() override;
private: private: