ELF Thunks: fix build error: missing 'overrides'
authorRoman Lebedev <lebedev.ri@gmail.com>
Sun, 6 May 2018 19:50:04 +0000 (19:50 +0000)
committerRoman Lebedev <lebedev.ri@gmail.com>
Sun, 6 May 2018 19:50:04 +0000 (19:50 +0000)
llvm-svn: 331608

lld/ELF/Thunks.cpp

index 8b72ab0..2cd7e51 100644 (file)
@@ -204,7 +204,7 @@ public:
 class PPC64PltCallStub final : public Thunk {
 public:
   PPC64PltCallStub(Symbol &Dest) : Thunk(Dest) {}
-  uint32_t size() { return 20; }
+  uint32_t size() override { return 20; }
   void writeTo(uint8_t *Buf) override;
   void addSymbols(ThunkSection &IS) override;
 };