mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-28 22:24:28 +00:00
Switch all uses of LLVM_OVERRIDE to just use 'override' directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202621 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -29,11 +29,11 @@ public:
|
||||
StringRefMemoryObject(StringRef Bytes, uint64_t Base = 0)
|
||||
: Bytes(Bytes), Base(Base) {}
|
||||
|
||||
uint64_t getBase() const LLVM_OVERRIDE { return Base; }
|
||||
uint64_t getExtent() const LLVM_OVERRIDE { return Bytes.size(); }
|
||||
uint64_t getBase() const override { return Base; }
|
||||
uint64_t getExtent() const override { return Bytes.size(); }
|
||||
|
||||
int readByte(uint64_t Addr, uint8_t *Byte) const LLVM_OVERRIDE;
|
||||
int readBytes(uint64_t Addr, uint64_t Size, uint8_t *Buf) const LLVM_OVERRIDE;
|
||||
int readByte(uint64_t Addr, uint8_t *Byte) const override;
|
||||
int readBytes(uint64_t Addr, uint64_t Size, uint8_t *Buf) const override;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user