From bb320a7019949e6febb635c538adb6ac441a9756 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 18 Jun 2022 14:18:28 -0700 Subject: [PATCH] Remove an unused lambda capture --- alc/context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alc/context.cpp b/alc/context.cpp index 447a1fe2..9292926c 100644 --- a/alc/context.cpp +++ b/alc/context.cpp @@ -797,7 +797,7 @@ void ALCcontext::eax_initialize_sources() void ALCcontext::eax_update_sources() { std::unique_lock source_lock{mSourceLock}; - auto update_source = [this](ALsource &source) + auto update_source = [](ALsource &source) { source.eax_commit(); }; ForEachSource(this, update_source); } -- 2.11.4.GIT