Replace _IRR_OVERRIDE_ macro with override keyword

The commit also establishes a precedent of leaving off the `virtual`
keyword in overrides. Although not strictly necessary, I believe this is
good for readability because it makes it clear it is an override and not
a pure virtual function, and it helps keep line lengths shorter. We
should move towards eliminating the macro altogether, but the definition
has been left in with a note on deprecation so that in-progress work
will not suffer merge conflicts.
This commit is contained in:
JosiahWI
2022-10-09 13:57:28 -05:00
committed by sfan5
parent f3a1f9f656
commit 59fc4401f1
87 changed files with 1471 additions and 1474 deletions

View File

@ -27,19 +27,19 @@ namespace io
virtual ~CWriteFile();
//! Reads an amount of bytes from the file.
virtual size_t write(const void* buffer, size_t sizeToWrite) _IRR_OVERRIDE_;
size_t write(const void* buffer, size_t sizeToWrite) override;
//! Changes position in file, returns true if successful.
virtual bool seek(long finalPos, bool relativeMovement = false) _IRR_OVERRIDE_;
bool seek(long finalPos, bool relativeMovement = false) override;
//! Returns the current position in the file.
virtual long getPos() const _IRR_OVERRIDE_;
long getPos() const override;
//! Returns name of file.
virtual const io::path& getFileName() const _IRR_OVERRIDE_;
const io::path& getFileName() const override;
//! Flush the content of the buffer in the file
virtual bool flush() _IRR_OVERRIDE_;
bool flush() override;
//! returns if file is open
bool isOpen() const;