From 6e96f68cf322eb2e3bc9175b40f1544875cba5a8 Mon Sep 17 00:00:00 2001 From: Casey Dahlin Date: Mon, 11 Mar 2019 12:35:41 -0700 Subject: [PATCH] Add missing override keyword Fuchsia builds with Clang, and it's a bit pickier about always using override when it's appropriate. Test: None --- libunwindstack/include/unwindstack/Memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libunwindstack/include/unwindstack/Memory.h b/libunwindstack/include/unwindstack/Memory.h index dba41d1c7..b3beb6eae 100644 --- a/libunwindstack/include/unwindstack/Memory.h +++ b/libunwindstack/include/unwindstack/Memory.h @@ -101,7 +101,7 @@ class MemoryFileAtOffset : public Memory { size_t Size() { return size_; } - void Clear(); + void Clear() override; protected: size_t size_ = 0;