diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-10 17:34:30 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-10 17:34:30 +0000 |
commit | 2132fbe21ea680f4282c7bf1c345ece9c861f1e7 (patch) | |
tree | e12574f43aefc43dd91c17d2e39f7604ff1d0760 /llvm/lib | |
parent | 8c184e3627f3b09b9ac552b9f7bc332c918f9a76 (diff) | |
download | bcm5719-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.h | 2 |
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()) |