diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-03-02 09:09:27 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-03-02 09:09:27 +0000 |
commit | 73156025e021f98786009a06c794f8b8f369b7a3 (patch) | |
tree | b20fd2bf0ddc155002a79f68ef6859b54f9338b7 /llvm/lib/DebugInfo/DWARFCompileUnit.h | |
parent | e55d9bf508471c97e7bad9e5f63e4fe103cb3042 (diff) | |
download | bcm5719-llvm-73156025e021f98786009a06c794f8b8f369b7a3.tar.gz bcm5719-llvm-73156025e021f98786009a06c794f8b8f369b7a3.zip |
Switch all uses of LLVM_OVERRIDE to just use 'override' directly.
llvm-svn: 202621
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFCompileUnit.h')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFCompileUnit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARFCompileUnit.h b/llvm/lib/DebugInfo/DWARFCompileUnit.h index 1c9573b0b4b..d1853d80a38 100644 --- a/llvm/lib/DebugInfo/DWARFCompileUnit.h +++ b/llvm/lib/DebugInfo/DWARFCompileUnit.h @@ -22,7 +22,7 @@ public: : DWARFUnit(DA, IS, AS, RS, SS, SOS, AOS, M, LE) {} void dump(raw_ostream &OS); // VTable anchor. - ~DWARFCompileUnit() LLVM_OVERRIDE; + ~DWARFCompileUnit() override; }; } |