diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-03-25 15:37:56 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-03-25 15:37:56 +0000 |
commit | d542efde8b773e1fd3e99bf5fe0797de6210f94b (patch) | |
tree | 545fd9cb30c3c13c1eb67b6fc34334aab0f85b69 /lldb/source/Plugins/Process/Linux/LinuxThread.h | |
parent | 327ec24b4d9f6cbbc5be60e53157a809259d0ab1 (diff) | |
download | bcm5719-llvm-d542efde8b773e1fd3e99bf5fe0797de6210f94b.tar.gz bcm5719-llvm-d542efde8b773e1fd3e99bf5fe0797de6210f94b.zip |
Remove virtual and add override for lots of function.
Effeted pathes:
* Host/posix/*
* Platform/gdb-server/*
* Process/Linux/*
* Process/POSIX/*
llvm-svn: 233193
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/LinuxThread.h')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/LinuxThread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Linux/LinuxThread.h b/lldb/source/Plugins/Process/Linux/LinuxThread.h index b896092b427..991950a9dcf 100644 --- a/lldb/source/Plugins/Process/Linux/LinuxThread.h +++ b/lldb/source/Plugins/Process/Linux/LinuxThread.h @@ -32,8 +32,8 @@ public: // LinuxThread internal API. // POSIXThread override - virtual void - RefreshStateAfterStop(); + void + RefreshStateAfterStop() override; }; #endif // #ifndef liblldb_LinuxThread_H_ |