Add missing override keyword

Fuchsia builds with Clang, and it's a bit pickier about always using
override when it's appropriate.

Test: None
This commit is contained in:
Casey Dahlin 2019-03-11 12:35:41 -07:00
parent fdfb9a0113
commit 6e96f68cf3
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class MemoryFileAtOffset : public Memory {
size_t Size() { return size_; }
void Clear();
void Clear() override;
protected:
size_t size_ = 0;