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/message.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/message.cpp')
| -rw-r--r-- | src/net/message.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/message.cpp b/src/net/message.cpp index b8624330..8639625e 100644 --- a/src/net/message.cpp +++ b/src/net/message.cpp @@ -34,19 +34,19 @@ namespace vmime { namespace net { -ref <const part> part::getPartAt(const int pos) const +ref <const part> part::getPartAt(const size_t pos) const { return getStructure()->getPartAt(pos); } -ref <part> part::getPartAt(const int pos) +ref <part> part::getPartAt(const size_t pos) { return getStructure()->getPartAt(pos); } -int part::getPartCount() const +size_t part::getPartCount() const { return getStructure()->getPartCount(); } |
