diff options
author | 2018-10-19 14:06:15 -0700 | |
---|---|---|
committer | 2018-10-23 15:19:55 -0700 | |
commit | 98ea9d9d82ab078ca10fa7f8e02eddda94cf1d98 (patch) | |
tree | a848b7e41ff227a2d3d4d6795ec11089f39cb6ca /runtime/monitor_test.cc | |
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/monitor_test.cc')
-rw-r--r-- | runtime/monitor_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor_test.cc b/runtime/monitor_test.cc index 0b168f86f4..8610899b9b 100644 --- a/runtime/monitor_test.cc +++ b/runtime/monitor_test.cc @@ -361,7 +361,7 @@ TEST_F(MonitorTest, TestTryLock) { thread_pool.AddTask(self, new TryLockTask(obj1)); thread_pool.StartWorkers(self); ScopedThreadSuspension sts(self, kSuspended); - thread_pool.Wait(Thread::Current(), /*do_work*/false, /*may_hold_locks*/false); + thread_pool.Wait(Thread::Current(), /*do_work=*/false, /*may_hold_locks=*/false); } // Test that the trylock actually locks the object. { |