dev: Revert 0a316996de76 [dev, sim: Added missing override...]

This changeset reverts the changset "dev, sim: Added missing override
keywords to fix CLANG compilation (OSX)" which was incorrectly rebased.

Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
Andreas Sandberg 2016-08-16 10:59:15 +01:00
parent 2c05f5207d
commit d80a613990

View file

@ -89,10 +89,8 @@ class RawDiskImage : public DiskImage
std::streampos size() const override;
virtual std::streampos read(uint8_t *data, std::streampos offset)
const override;
virtual std::streampos write(const uint8_t *data, std::streampos offset)
override;
std::streampos read(uint8_t *data, std::streampos offset) const override;
std::streampos write(const uint8_t *data, std::streampos offset) override;
};
/**