forked from OSchip/llvm-project
[BOLT][NFC] Suppress addList override warning
Summary: Suppresses the warning ``` src/DebugData.h:338:20: warning: 'addList' overrides a member function but is not marked 'override' [-Wsuggest-override] ``` (cherry picked from FBD28858201)
This commit is contained in:
parent
8a919593c7
commit
f7f0a571d7
|
@ -335,7 +335,7 @@ public:
|
|||
static void setAddressWriter(DebugAddrWriter *AddrW) { AddrWriter = AddrW; }
|
||||
|
||||
/// Writes out locationList, with index in to .debug_addr to be patched later.
|
||||
virtual uint64_t addList(const DebugLocationsVector &LocList);
|
||||
uint64_t addList(const DebugLocationsVector &LocList) override;
|
||||
|
||||
/// Finalizes all the location by patching correct index in to .debug_addr.
|
||||
void finalizePatches();
|
||||
|
|
Loading…
Reference in New Issue