summaryrefslogtreecommitdiffstats
path: root/runtime/oat_file.h
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2018-10-19 14:06:15 -0700
committerAndreas Gampe <agampe@google.com>2018-10-23 15:19:55 -0700
commit98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98 (patch)
treea848b7e41ff227a2d3d4d6795ec11089f39cb6ca /runtime/oat_file.h
parent02338775e33b553be51d44ff60bb1ef8e527bd94 (diff)
downloadart-98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98.tar.gz
art-98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98.tar.bz2
art-98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98.zip
ART: Refactor for bugprone-argument-comment
Handles runtime. Bug: 116054210 Test: WITH_TIDY=1 mmma art Change-Id: Ibc0d5086809d647f0ce4df5452eb84442d27ecf0
Diffstat (limited to 'runtime/oat_file.h')
-rw-r--r--runtime/oat_file.h8
1 files changed, 4 insertions, 4 deletions
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: