diff options
author | 2018-10-16 13:09:32 -0700 | |
---|---|---|
committer | 2018-10-17 12:17:28 -0700 | |
commit | 6e8977690147b75096c0a993efb53ae329e3fd2c (patch) | |
tree | dd2e653b893e2d91a9c238a3468f66a3def98743 /openjdkjvmti/ti_class.cc | |
parent | 0de385f9eb5f8c066121ea2d43e8b8eea6a726fa (diff) |
ART: Refactor for bugprone-argument-comment
Handles openjdkjvmti.
Bug: 116054210
Test: WITH_TIDY=1 mmma art
Change-Id: Ic73e3f32b08f3b6d9300428ad95d12a696db0458
Diffstat (limited to 'openjdkjvmti/ti_class.cc')
-rw-r--r-- | openjdkjvmti/ti_class.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openjdkjvmti/ti_class.cc b/openjdkjvmti/ti_class.cc index f6113dfecc..3d33487970 100644 --- a/openjdkjvmti/ti_class.cc +++ b/openjdkjvmti/ti_class.cc @@ -113,8 +113,8 @@ static std::unique_ptr<const art::DexFile> MakeSingleDexFile(art::Thread* self, std::unique_ptr<const art::DexFile> dex_file(dex_file_loader.Open(map_name, checksum, std::move(map), - /*verify*/true, - /*verify_checksum*/true, + /*verify=*/true, + /*verify_checksum=*/true, &error_msg)); if (dex_file.get() == nullptr) { LOG(WARNING) << "Unable to load modified dex file for " << descriptor << ": " << error_msg; |