| Index: base/win/scoped_handle_test_dll.cc
|
| diff --git a/base/win/scoped_handle_test_dll.cc b/base/win/scoped_handle_test_dll.cc
|
| index c72e4592b9dc02d7ff3132047299b418e7b51b62..0d70c0b627c25ba61b02d3f3a0f8b72effc42e62 100644
|
| --- a/base/win/scoped_handle_test_dll.cc
|
| +++ b/base/win/scoped_handle_test_dll.cc
|
| @@ -66,7 +66,7 @@ bool InternalRunThreadTest() {
|
| ::CloseHandle(ready_event);
|
|
|
| if (threads_.size() != kNumThreads) {
|
| - for (const auto& thread : threads_)
|
| + for (auto* thread : threads_)
|
| ::CloseHandle(thread);
|
| ::CloseHandle(start_event);
|
| return false;
|
| @@ -74,7 +74,7 @@ bool InternalRunThreadTest() {
|
|
|
| ::SetEvent(start_event);
|
| ::CloseHandle(start_event);
|
| - for (const auto& thread : threads_) {
|
| + for (auto* thread : threads_) {
|
| ::WaitForSingleObject(thread, INFINITE);
|
| ::CloseHandle(thread);
|
| }
|
|
|