commit | 6e96f68cf322eb2e3bc9175b40f1544875cba5a8 | [log] [tgz] |
---|---|---|
author | Casey Dahlin <sadmac@google.com> | Mon Mar 11 12:35:41 2019 -0700 |
committer | Casey Dahlin <sadmac@google.com> | Mon Mar 11 12:35:41 2019 -0700 |
tree | 01f5037e1b892385e6865e9055830bc7311226e6 | |
parent | fdfb9a0113abc4b91859f2e4dfd05b1c0ca018b0 [diff] |
Add missing override keyword Fuchsia builds with Clang, and it's a bit pickier about always using override when it's appropriate. Test: None
diff --git a/libunwindstack/include/unwindstack/Memory.h b/libunwindstack/include/unwindstack/Memory.h index dba41d1..b3beb6e 100644 --- a/libunwindstack/include/unwindstack/Memory.h +++ b/libunwindstack/include/unwindstack/Memory.h
@@ -101,7 +101,7 @@ size_t Size() { return size_; } - void Clear(); + void Clear() override; protected: size_t size_ = 0;