From 9eab53c9a2849b399c5ed0766d4d7e0cf5119aef Mon Sep 17 00:00:00 2001 From: Derek Henderson Date: Mon, 17 Jan 2022 07:29:23 -0800 Subject: Fixed compiler warning (#640) --- al/event.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'al/event.cpp') diff --git a/al/event.cpp b/al/event.cpp index 5daa2739..e5923c43 100644 --- a/al/event.cpp +++ b/al/event.cpp @@ -201,7 +201,7 @@ START_API_FUNC /* Wait to ensure the event handler sees the changed flags before * returning. */ - std::lock_guard{context->mEventCbLock}; + std::lock_guard _{context->mEventCbLock}; } } END_API_FUNC -- cgit v1.2.3