diff options
author | Chris Robinson <[email protected]> | 2023-02-28 21:33:22 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-02-28 21:33:22 -0800 |
commit | ec9c421d312d6df701631877f6ce6256355101dc (patch) | |
tree | 5a388fb516aea395195710245f8c98736b5e3a4d /al/event.cpp | |
parent | 8e5db6e50599b826a41c1fadcc0b121dff0a6f17 (diff) |
Remove another gratuitous [[likely]]
Diffstat (limited to 'al/event.cpp')
-rw-r--r-- | al/event.cpp | 2 |
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) |