diff options
Diffstat (limited to 'include/llvm/Support/StringRefMemoryObject.h')
-rw-r--r-- | include/llvm/Support/StringRefMemoryObject.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/llvm/Support/StringRefMemoryObject.h b/include/llvm/Support/StringRefMemoryObject.h index a0ef35a9e1..994fa34b74 100644 --- a/include/llvm/Support/StringRefMemoryObject.h +++ b/include/llvm/Support/StringRefMemoryObject.h @@ -16,6 +16,7 @@ #define LLVM_SUPPORT_STRINGREFMEMORYOBJECT_H #include "llvm/ADT/StringRef.h" +#include "llvm/Support/Compiler.h" #include "llvm/Support/MemoryObject.h" namespace llvm { @@ -28,13 +29,11 @@ public: StringRefMemoryObject(StringRef Bytes, uint64_t Base = 0) : Bytes(Bytes), Base(Base) {} - uint64_t getBase() const { return Base; } - uint64_t getExtent() const { return Bytes.size(); } - - int readByte(uint64_t Addr, uint8_t *Byte) const; - int readBytes(uint64_t Addr, uint64_t Size, - uint8_t *Buf, uint64_t *Copied) const; + uint64_t getBase() const LLVM_OVERRIDE { return Base; } + uint64_t getExtent() const LLVM_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; }; } |