diff options
author | Vincent Richard <[email protected]> | 2013-12-10 07:52:51 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-12-10 07:52:51 +0000 |
commit | 7e265b05f440ed81b80f2de496c9d13221a69fe0 (patch) | |
tree | d4dad210715ea9d60b2136bd416647d4bc02166a /src/emptyContentHandler.cpp | |
parent | Enforce strict aliasing rule and avoid alignment issues. (diff) | |
download | vmime-7e265b05f440ed81b80f2de496c9d13221a69fe0.tar.gz vmime-7e265b05f440ed81b80f2de496c9d13221a69fe0.zip |
Simplified types for better readability. Use appropriate types (size_t, byte_t...). Minor warning fixes.
Diffstat (limited to 'src/emptyContentHandler.cpp')
-rw-r--r-- | src/emptyContentHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emptyContentHandler.cpp b/src/emptyContentHandler.cpp index f6cdee95..e0f191f3 100644 --- a/src/emptyContentHandler.cpp +++ b/src/emptyContentHandler.cpp @@ -40,7 +40,7 @@ shared_ptr <contentHandler> emptyContentHandler::clone() const void emptyContentHandler::generate(utility::outputStream& /* os */, const vmime::encoding& /* enc */, - const string::size_type /* maxLineLength */) const + const size_t /* maxLineLength */) const { // Nothing to do. } @@ -72,7 +72,7 @@ void emptyContentHandler::extractRaw(utility::outputStream& /* os */, } -string::size_type emptyContentHandler::getLength() const +size_t emptyContentHandler::getLength() const { return (0); } |