summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2014-10-10 17:34:30 +0000
committerFariborz Jahanian <fjahanian@apple.com>2014-10-10 17:34:30 +0000
commit2132fbe21ea680f4282c7bf1c345ece9c861f1e7 (patch)
treee12574f43aefc43dd91c17d2e39f7604ff1d0760 /llvm/lib
parent8c184e3627f3b09b9ac552b9f7bc332c918f9a76 (diff)
downloadbcm5719-llvm-2132fbe21ea680f4282c7bf1c345ece9c861f1e7.tar.gz
bcm5719-llvm-2132fbe21ea680f4282c7bf1c345ece9c861f1e7.zip
Add couple of missing 'override' keyword. NFC.
llvm-svn: 219516
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/DebugInfo/DWARFUnit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARFUnit.h b/llvm/lib/DebugInfo/DWARFUnit.h
index 09eb55fc323..786f00f5e8e 100644
--- a/llvm/lib/DebugInfo/DWARFUnit.h
+++ b/llvm/lib/DebugInfo/DWARFUnit.h
@@ -71,7 +71,7 @@ public:
typedef typename UnitVector::iterator iterator;
typedef llvm::iterator_range<typename UnitVector::iterator> iterator_range;
- UnitType *getUnitForOffset(uint32_t Offset) const {
+ UnitType *getUnitForOffset(uint32_t Offset) const override {
auto *CU = std::upper_bound(this->begin(), this->end(), Offset,
UnitOffsetComparator());
if (CU != this->end())
OpenPOWER on IntegriCloud