Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ae797ec3 authored by Yi Kong's avatar Yi Kong
Browse files

Remove unused lambda captures

Test: build
Bug: 37752547
Change-Id: Id318f412ad81b6e7de3ad644cba4405bb04f2729
parent fd8fab19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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());