[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:
Amir Ayupov 2021-06-02 19:12:13 -07:00 committed by Maksim Panchenko
parent 8a919593c7
commit f7f0a571d7
1 changed files with 1 additions and 1 deletions

View File

@ -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();