From ec9c421d312d6df701631877f6ce6256355101dc Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 28 Feb 2023 21:33:22 -0800 Subject: Remove another gratuitous [[likely]] --- 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 2aceba3a..8b8fa686 100644 --- a/al/event.cpp +++ b/al/event.cpp @@ -35,7 +35,7 @@ static int EventThread(ALCcontext *context) { RingBuffer *ring{context->mAsyncEvents.get()}; bool quitnow{false}; - while(!quitnow) [[likely]] + while(!quitnow) { auto evt_data = ring->getReadVector().first; if(evt_data.len == 0) -- cgit v1.2.3