diff options
author | 2018-10-19 14:06:15 -0700 | |
---|---|---|
committer | 2018-10-23 15:19:55 -0700 | |
commit | 98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98 (patch) | |
tree | a848b7e41ff227a2d3d4d6795ec11089f39cb6ca /runtime/class_linker.h | |
parent | 02338775e33b553be51d44ff60bb1ef8e527bd94 (diff) |
ART: Refactor for bugprone-argument-comment
Handles runtime.
Bug: 116054210
Test: WITH_TIDY=1 mmma art
Change-Id: Ibc0d5086809d647f0ce4df5452eb84442d27ecf0
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r-- | runtime/class_linker.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index b6f1f865d6..a48dfafab5 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -1043,12 +1043,12 @@ class ClassLinker { public: // This slot must become a default conflict method. static MethodTranslation CreateConflictingMethod() { - return MethodTranslation(Type::kConflict, /*translation*/nullptr); + return MethodTranslation(Type::kConflict, /*translation=*/nullptr); } // This slot must become an abstract method. static MethodTranslation CreateAbstractMethod() { - return MethodTranslation(Type::kAbstract, /*translation*/nullptr); + return MethodTranslation(Type::kAbstract, /*translation=*/nullptr); } // Use the given method as the current value for this vtable slot during translation. |