diff options
| author | Vincent Richard <[email protected]> | 2005-01-05 23:17:23 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-01-05 23:17:23 +0100 |
| commit | 8a752d3889368971f58fb3db318a6b93d28f4e52 (patch) | |
| tree | 33438adfbe92be962dc8c19643bdb515ded88081 | |
| parent | Started version 0.6.3. (diff) | |
| download | vmime-8a752d3889368971f58fb3db318a6b93d28f4e52.tar.gz vmime-8a752d3889368971f58fb3db318a6b93d28f4e52.zip | |
Fixed compilation errors with 'isascii' on some systems.
| -rw-r--r-- | src/text.cpp | 1 | ||||
| -rw-r--r-- | src/utility/stringUtils.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/text.cpp b/src/text.cpp index 9fa970b7..4b520a43 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -20,6 +20,7 @@ #include "vmime/text.hpp" #include "vmime/utility/stringUtils.hpp" +#include "vmime/parserHelpers.hpp" #include "vmime/encoder.hpp" #include "vmime/encoderB64.hpp" diff --git a/src/utility/stringUtils.cpp b/src/utility/stringUtils.cpp index 01262120..3f91362f 100644 --- a/src/utility/stringUtils.cpp +++ b/src/utility/stringUtils.cpp @@ -18,6 +18,7 @@ // #include "vmime/utility/stringUtils.hpp" +#include "vmime/parserHelpers.hpp" namespace vmime { |
