mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-12-09 18:22:46 +00:00
Add LLVM_OVERRIDE to methods that override their base classes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164471 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -55,11 +55,11 @@ namespace llvm
|
||||
///
|
||||
const char *Scanned;
|
||||
|
||||
virtual void write_impl(const char *Ptr, size_t Size);
|
||||
virtual void write_impl(const char *Ptr, size_t Size) LLVM_OVERRIDE;
|
||||
|
||||
/// current_pos - Return the current position within the stream,
|
||||
/// not counting the bytes currently in the buffer.
|
||||
virtual uint64_t current_pos() const {
|
||||
virtual uint64_t current_pos() const LLVM_OVERRIDE {
|
||||
// Our current position in the stream is all the contents which have been
|
||||
// written to the underlying stream (*not* the current position of the
|
||||
// underlying stream).
|
||||
|
||||
Reference in New Issue
Block a user