diff options
author | Kevin Smith <git@kismith.co.uk> | 2014-11-24 11:10:22 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2014-11-24 11:10:22 (GMT) |
commit | 1ed9614bc04758cd393f15106ae6c1a9e13de4f5 (patch) | |
tree | 56a5e8d1da6c56e7bacb65abc1d63d38a9deefb4 /Swiften | |
parent | 8b77cb1bff261dbe7c9975918dd3915c2f32b0e0 (diff) | |
download | swift-1ed9614bc04758cd393f15106ae6c1a9e13de4f5.zip swift-1ed9614bc04758cd393f15106ae6c1a9e13de4f5.tar.bz2 |
Add missing include
Change-Id: Ida1dd60a01e16e71831221b7e2fcfb74fdde54f3
Diffstat (limited to 'Swiften')
-rw-r--r-- | Swiften/Base/Algorithm.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Swiften/Base/Algorithm.h b/Swiften/Base/Algorithm.h index d5edab1..c37fdf7 100644 --- a/Swiften/Base/Algorithm.h +++ b/Swiften/Base/Algorithm.h @@ -1,15 +1,16 @@ /* - * Copyright (c) 2011 Remko Tronçon + * Copyright (c) 2011-2014 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once -#include <vector> +#include <algorithm> #include <list> #include <map> -#include <algorithm> +#include <string> +#include <vector> namespace Swift { |