commit | 475a448cf893a2a3b81ce6ddb393b5a642102714 | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Sat May 06 01:21:00 2017 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Sat May 06 01:21:00 2017 +0000 |
tree | 4f79872e79da1c4eae5c2c2e94fd4ddb99b5aab2 | |
parent | 666b61659242f6e52e2801857373890763aff1ad [diff] | |
parent | 26f71e6a5a0a0f18048ec458c53d4fb90e70f24e [diff] |
Merge "Remove unused lambda captures" am: 5b8a92af5d am: 26f71e6a5a Change-Id: I0efa39264550dd7b8b741e788729fefc3de427fb
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());