diff options
author | 2018-09-07 08:11:55 -0700 | |
---|---|---|
committer | 2018-09-07 09:13:50 -0700 | |
commit | fa6a1b0a1d9d186a0ad9bb413a4e49f1ffd187d8 (patch) | |
tree | 6d3bef945030868d7e78162dc3f4f35a07ce410a /patchoat/patchoat_test.cc | |
parent | a0878aa9f4f4102e56a6381b28a8d7c38dec80b9 (diff) |
ART: Continue adding override annotations
Use Clang-tidy's modernize-use-override to add more annotations. Ignore
inferred annotations on destructors.
Bug: 32619234
Test: mmma art
Change-Id: Ic432c928e398d44df9171e42db04ee19946e6887
Diffstat (limited to 'patchoat/patchoat_test.cc')
-rw-r--r-- | patchoat/patchoat_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patchoat/patchoat_test.cc b/patchoat/patchoat_test.cc index 08bf31c4bd..6492b96b34 100644 --- a/patchoat/patchoat_test.cc +++ b/patchoat/patchoat_test.cc @@ -529,7 +529,7 @@ class PatchoatVerificationTest : public PatchoatTest { ASSERT_EQ(rel_shortened_basenames, relocated_image_shortened_basenames); } - virtual void TearDown() { + void TearDown() override { if (!dex2oat_orig_dir_.empty()) { ClearDirectory(dex2oat_orig_dir_.c_str(), /*recursive*/ true); rmdir(dex2oat_orig_dir_.c_str()); |