mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-27 00:42:30 +03:00
fixed: assigned const to non const type
This commit is contained in:
parent
45c1cde698
commit
8482504b65
@ -112,7 +112,7 @@ CEventQueue::loop()
|
||||
LOG((CLOG_DEBUG "event queue is ready"));
|
||||
while (!m_pending.empty()) {
|
||||
LOG((CLOG_DEBUG "add pending events to buffer"));
|
||||
CEvent& event = m_pending.front();
|
||||
const CEvent& event = m_pending.front();
|
||||
addEventToBuffer(event);
|
||||
m_pending.pop();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user