Skip to content

Commit c404110

Browse files
committed
[RuntimeDyld][Windows] Add missing override to silence warning. NFC.
1 parent 133e5ae commit c404110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ class RuntimeDyldCOFF : public RuntimeDyldImpl {
5050

5151
static constexpr StringRef getImportSymbolPrefix() { return "__imp_"; }
5252

53-
bool relocationNeedsDLLImportStub(const RelocationRef &R) const;
53+
bool relocationNeedsDLLImportStub(const RelocationRef &R) const override;
5454

55-
unsigned sizeAfterAddingDLLImportStub(unsigned Size) const {
55+
unsigned sizeAfterAddingDLLImportStub(unsigned Size) const override {
5656
return alignTo(Size, PointerSize) + PointerSize;
5757
}
5858

0 commit comments

Comments
 (0)