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

Commit d2e72f4d authored by Yi Kong's avatar Yi Kong Committed by android-build-merger
Browse files

Merge "Remove unused lambda captures" am: 5b8a92af am: 26f71e6a am: 475a448c

am: f074e428

Change-Id: If7f5f91ee182426dc01fb671ecbee374c350f0b6
parents 74a72968 f074e428
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());