commit | e7a05087a716ab19a6aa7210d438f0c5522134e5 | [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 | 81c8c4aa2e6b71e913fa8726cc124a821c4f9ed1 [diff] | |
parent | efe96ef2758d79aab25a9dea311dce50a9ebfa13 [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());