diff options
author | Vincent Richard <[email protected]> | 2008-07-11 21:27:24 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2008-07-11 21:27:24 +0000 |
commit | 9d4155023dbad2f2a7cc5d8f4dc80582ddb98ac1 (patch) | |
tree | 32c6c6b05e5e58862c757cb9628e3fe5ffc38e67 | |
parent | Escape all RFC-2047 'especials' characters (Zarafa). (diff) | |
download | vmime-9d4155023dbad2f2a7cc5d8f4dc80582ddb98ac1.tar.gz vmime-9d4155023dbad2f2a7cc5d8f4dc80582ddb98ac1.zip |
Fixed missing std includes.
-rw-r--r-- | tests/testRunner.cpp | 1 | ||||
-rw-r--r-- | vmime/utility/filteredStream.hpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/testRunner.cpp b/tests/testRunner.cpp index a39fc262..e2930372 100644 --- a/tests/testRunner.cpp +++ b/tests/testRunner.cpp @@ -27,6 +27,7 @@ #include <iostream> #include <vector> #include <algorithm> +#include <memory> #include <cppunit/XmlOutputter.h> #include <cppunit/extensions/TestFactoryRegistry.h> diff --git a/vmime/utility/filteredStream.hpp b/vmime/utility/filteredStream.hpp index 8c1c6820..3d83e325 100644 --- a/vmime/utility/filteredStream.hpp +++ b/vmime/utility/filteredStream.hpp @@ -25,6 +25,8 @@ #define VMIME_UTILITY_FILTEREDSTREAM_HPP_INCLUDED +#include <algorithm> + #include "vmime/utility/stream.hpp" |