commit | f074e428aefe22a6c5ecfba917fe3732ff0f5821 | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Sat May 06 01:23:01 2017 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Sat May 06 01:23:01 2017 +0000 |
tree | 3095951a90c348b928f5ac6c538b031f1841407a | |
parent | 4db76b1d69a64c8351268383428049c00ab0c2c0 [diff] | |
parent | 475a448cf893a2a3b81ce6ddb393b5a642102714 [diff] |
Merge "Remove unused lambda captures" am: 5b8a92af5d am: 26f71e6a5a am: 475a448cf8 Change-Id: Icaac74b600e436a0fa696741ba151ac7a8f00d0d
diff --git a/libmemunreachable/tests/ThreadCapture_test.cpp b/libmemunreachable/tests/ThreadCapture_test.cpp index 41ed84e..44aabd7 100644 --- a/libmemunreachable/tests/ThreadCapture_test.cpp +++ b/libmemunreachable/tests/ThreadCapture_test.cpp
@@ -55,7 +55,7 @@ threads_.reserve(threads); tids_.reserve(threads); for (unsigned int i = 0; i < threads; i++) { - threads_.emplace_back([&, i, threads, this]() { + threads_.emplace_back([&, threads, this]() { { std::lock_guard<std::mutex> lk(m_); tids_.push_back(gettid());