From 3034a848a95fc2a2abb1c7a55d6a2584d370ffde Mon Sep 17 00:00:00 2001 From: Sergei Vinogradov Date: Sun, 20 Oct 2024 23:23:56 +0200 Subject: [PATCH] Remove an unnecessary parameter in openHandlesFn lambda --- test/ipcFixtures.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ipcFixtures.hpp b/test/ipcFixtures.hpp index 22d687eac8..776ea7aabc 100644 --- a/test/ipcFixtures.hpp +++ b/test/ipcFixtures.hpp @@ -461,7 +461,7 @@ TEST_P(umfIpcTest, ConcurrentOpenCloseHandles) { umf_test::syncthreads_barrier syncthreads(NTHREADS); - auto openHandlesFn = [this, &ipcHandles, &openedIpcHandles, &syncthreads, + auto openHandlesFn = [&ipcHandles, &openedIpcHandles, &syncthreads, &pool](size_t tid) { syncthreads(); for (auto ipcHandle : ipcHandles) {