diff options
author | Vincent Richard <[email protected]> | 2012-12-12 15:35:55 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2012-12-12 15:35:55 +0000 |
commit | 3a5621c2aa3931be608508d4fadc42c2a09cb251 (patch) | |
tree | a39a344cbacdc9524122536ecbf8866e225e8230 /src/net/pop3/POP3Response.cpp | |
parent | Do not re-encode data if it is already encoded (thanks to Mehmet Bozkurt). (diff) | |
download | vmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.tar.gz vmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.zip |
Trivial 64-bit warning fixes.
Diffstat (limited to 'src/net/pop3/POP3Response.cpp')
-rw-r--r-- | src/net/pop3/POP3Response.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/pop3/POP3Response.cpp b/src/net/pop3/POP3Response.cpp index ab792611..6ca0ad75 100644 --- a/src/net/pop3/POP3Response.cpp +++ b/src/net/pop3/POP3Response.cpp @@ -136,13 +136,13 @@ const string POP3Response::getText() const } -const string POP3Response::getLineAt(const unsigned int pos) const +const string POP3Response::getLineAt(const size_t pos) const { return m_lines[pos]; } -unsigned int POP3Response::getLineCount() const +size_t POP3Response::getLineCount() const { return m_lines.size(); } |