From f4baef0c8814f4f895748a1a5da67293594c9c7d Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Tue, 19 May 2015 13:32:19 +0000 Subject: Rangify for loop in Cleanup(), NFC. llvm-svn: 237695 --- llvm/lib/Support/Windows/Signals.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Support') diff --git a/llvm/lib/Support/Windows/Signals.inc b/llvm/lib/Support/Windows/Signals.inc index 26c3c6e111a..6006499f4da 100644 --- a/llvm/lib/Support/Windows/Signals.inc +++ b/llvm/lib/Support/Windows/Signals.inc @@ -459,8 +459,8 @@ static void Cleanup() { } if (CallBacksToRun) - for (unsigned i = 0, e = CallBacksToRun->size(); i != e; ++i) - (*CallBacksToRun)[i].first((*CallBacksToRun)[i].second); + for (auto &I : *CallBacksToRun) + I.first(I.second); LeaveCriticalSection(&CriticalSection); } -- cgit v1.2.3