summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Process.h
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-03-04 06:24:11 +0000
committerCraig Topper <craig.topper@gmail.com>2014-03-04 06:24:11 +0000
commit4a655e706453ba6fcf1db555437e3725eed6703b (patch)
tree9459f8339b6eaea184ae4e1f01a017c24c4d8727 /include/llvm/Support/Process.h
parentcfb73ab1c0fec466952c6602c306e7665383f822 (diff)
downloadllvm-4a655e706453ba6fcf1db555437e3725eed6703b.tar.gz
llvm-4a655e706453ba6fcf1db555437e3725eed6703b.tar.bz2
llvm-4a655e706453ba6fcf1db555437e3725eed6703b.tar.xz
[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
Diffstat (limited to 'include/llvm/Support/Process.h')
-rw-r--r--include/llvm/Support/Process.h8
1 files changed, 4 insertions, 4 deletions
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)
/// @{