summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/EventLoop.cpp')
-rw-r--r--Swiften/EventLoop/EventLoop.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Swiften/EventLoop/EventLoop.cpp b/Swiften/EventLoop/EventLoop.cpp
index eefbf65..186616f 100644
--- a/Swiften/EventLoop/EventLoop.cpp
+++ b/Swiften/EventLoop/EventLoop.cpp
@@ -16,7 +16,6 @@
#include <boost/optional.hpp>
#include <Swiften/Base/Log.h>
-#include <Swiften/Base/foreach.h>
namespace lambda = boost::lambda;
@@ -61,7 +60,7 @@ void EventLoop::handleNextEvents() {
callEventPosted = !events_.empty();
}
if (!nextEvents.empty()) {
- foreach (const Event& event, nextEvents) {
+ for (const auto& event : nextEvents) {
invokeCallback(event);
}
}