summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2015-02-13 08:07:00 +0000
committerChandler Carruth <chandlerc@gmail.com>2015-02-13 08:07:00 +0000
commit40927d0dcd1c50dfa68b6f163333268459179e43 (patch)
treecdfd8d01534dcf2ced38f5acc243e0cfecfbcb24 /lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
parentf7888ab386434ec05067af8d6abe48bd890cd2a4 (diff)
downloadbcm5719-llvm-40927d0dcd1c50dfa68b6f163333268459179e43.tar.gz
bcm5719-llvm-40927d0dcd1c50dfa68b6f163333268459179e43.zip
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
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h')
-rw-r--r--lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
index 7c9d3528a83..23d192c12de 100644
--- a/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
+++ b/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
@@ -49,10 +49,10 @@ namespace lldb_private
IsWatchpointVacant(uint32_t wp_index);
bool
- ClearHardwareWatchpoint(uint32_t wp_index);
+ ClearHardwareWatchpoint(uint32_t wp_index) override;
Error
- ClearAllHardwareWatchpoints ();
+ ClearAllHardwareWatchpoints () override;
Error
SetHardwareWatchpointWithIndex(lldb::addr_t addr, size_t size,
@@ -60,13 +60,13 @@ namespace lldb_private
uint32_t
SetHardwareWatchpoint(lldb::addr_t addr, size_t size,
- uint32_t watch_flags);
+ uint32_t watch_flags) override;
lldb::addr_t
GetWatchpointAddress(uint32_t wp_index);
uint32_t
- NumSupportedHardwareWatchpoints();
+ NumSupportedHardwareWatchpoints() override;
private:
OpenPOWER on IntegriCloud