From 98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Fri, 19 Oct 2018 14:06:15 -0700 Subject: ART: Refactor for bugprone-argument-comment Handles runtime. Bug: 116054210 Test: WITH_TIDY=1 mmma art Change-Id: Ibc0d5086809d647f0ce4df5452eb84442d27ecf0 --- runtime/oat_file.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'runtime/oat_file.h') diff --git a/runtime/oat_file.h b/runtime/oat_file.h index ba08e5e38b..4294baf23a 100644 --- a/runtime/oat_file.h +++ b/runtime/oat_file.h @@ -226,12 +226,12 @@ class OatFile { // A representation of an invalid OatClass, used when an OatClass can't be found. // See FindOatClass(). static OatClass Invalid() { - return OatClass(/* oat_file */ nullptr, + return OatClass(/* oat_file= */ nullptr, ClassStatus::kErrorUnresolved, kOatClassNoneCompiled, - /* bitmap_size */ 0, - /* bitmap_pointer */ nullptr, - /* methods_pointer */ nullptr); + /* bitmap_size= */ 0, + /* bitmap_pointer= */ nullptr, + /* methods_pointer= */ nullptr); } private: -- cgit v1.2.3