From dad59528ccd770301b29c7db8148ff8ab8e89c92 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 14 Mar 2018 19:59:06 +0300 Subject: reverse iterators for LIST<> --- src/core/stdmsg/src/cmdlist.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/core') diff --git a/src/core/stdmsg/src/cmdlist.cpp b/src/core/stdmsg/src/cmdlist.cpp index 3b44e921c9..23c6fbe20b 100644 --- a/src/core/stdmsg/src/cmdlist.cpp +++ b/src/core/stdmsg/src/cmdlist.cpp @@ -32,13 +32,11 @@ static VOID CALLBACK MsgTimer(HWND, UINT, UINT_PTR, DWORD dwTime) LIST arTimedOut(1); { mir_cslock lck(csMsgQueue); - for (int i = msgQueue.getCount() - 1; i >= 0; i--) { - TMsgQueue *item = msgQueue[i]; - if (dwTime - item->ts > g_dat.msgTimeout) { - arTimedOut.insert(item); - msgQueue.remove(i); + for (auto &it : msgQueue.rev_iter()) + if (dwTime - it->ts > g_dat.msgTimeout) { + arTimedOut.insert(it); + msgQueue.remove(it); } - } } for (auto &it : arTimedOut) -- cgit v1.2.3