diff options
| author | Remko Tronçon <git@el-tramo.be> | 2013-08-16 11:43:46 (GMT) |
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2013-08-16 19:02:28 (GMT) |
| commit | fe32a6d90bd0b4f931bdfce91d3a982b5fbc599d (patch) | |
| tree | f1344d799d4918d62c09b1deff68e79ea53d083f | |
| parent | 53af82bb4f962ff7b372f3051060779cdb97779d (diff) | |
| download | swift-contrib-fe32a6d90bd0b4f931bdfce91d3a982b5fbc599d.zip swift-contrib-fe32a6d90bd0b4f931bdfce91d3a982b5fbc599d.tar.bz2 | |
Fix double includes in EventLoop.
Change-Id: Icd510a0737c46618acedc311b1b4e24b72d6673d
| -rw-r--r-- | Swiften/EventLoop/EventLoop.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Swiften/EventLoop/EventLoop.cpp b/Swiften/EventLoop/EventLoop.cpp index 014b81f..502bc49 100644 --- a/Swiften/EventLoop/EventLoop.cpp +++ b/Swiften/EventLoop/EventLoop.cpp @@ -7,15 +7,14 @@ #include <Swiften/EventLoop/EventLoop.h> #include <algorithm> -#include <boost/bind.hpp> #include <iostream> #include <cassert> +#include <boost/bind.hpp> +#include <boost/lambda/lambda.hpp> +#include <boost/lambda/bind.hpp> #include <boost/thread/locks.hpp> #include <Swiften/Base/Log.h> -#include <boost/thread/locks.hpp> -#include <boost/lambda/lambda.hpp> -#include <boost/lambda/bind.hpp> namespace lambda = boost::lambda; |
Swift