Merge "Remove unused lambda captures" am: 5b8a92af5d

am: 26f71e6a5a

Change-Id: I0efa39264550dd7b8b741e788729fefc3de427fb
This commit is contained in:
Yi Kong 2017-05-06 01:21:00 +00:00 committed by android-build-merger
commit 475a448cf8

View file

@ -55,7 +55,7 @@ class ThreadListTest : public ::testing::TestWithParam<int> {
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());