From 4a655e706453ba6fcf1db555437e3725eed6703b Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Tue, 4 Mar 2014 06:24:11 +0000 Subject: [C+11] Add 'override' keyword to methods in the support library. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202791 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Process.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/llvm/Support/Process.h') diff --git a/include/llvm/Support/Process.h b/include/llvm/Support/Process.h index 2b69ad3944..7f6441ea20 100644 --- a/include/llvm/Support/Process.h +++ b/include/llvm/Support/Process.h @@ -110,10 +110,10 @@ class self_process : public process { virtual ~self_process(); public: - virtual id_type get_id(); - virtual TimeValue get_user_time() const; - virtual TimeValue get_system_time() const; - virtual TimeValue get_wall_time() const; + id_type get_id() override; + TimeValue get_user_time() const override; + TimeValue get_system_time() const override; + TimeValue get_wall_time() const override; /// \name Process configuration (sysconf on POSIX) /// @{ -- cgit v1.2.3