aboutsummaryrefslogtreecommitdiffstats
path: root/al
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-02-28 21:33:22 -0800
committerChris Robinson <[email protected]>2023-02-28 21:33:22 -0800
commitec9c421d312d6df701631877f6ce6256355101dc (patch)
tree5a388fb516aea395195710245f8c98736b5e3a4d /al
parent8e5db6e50599b826a41c1fadcc0b121dff0a6f17 (diff)
Remove another gratuitous [[likely]]
Diffstat (limited to 'al')
-rw-r--r--al/event.cpp2
1 files changed, 1 insertions, 1 deletions
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)