aboutsummaryrefslogtreecommitdiffstats
path: root/tests/parser/attachmentHelperTest.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2012-12-12 15:35:55 +0000
committerVincent Richard <[email protected]>2012-12-12 15:35:55 +0000
commit3a5621c2aa3931be608508d4fadc42c2a09cb251 (patch)
treea39a344cbacdc9524122536ecbf8866e225e8230 /tests/parser/attachmentHelperTest.cpp
parentDo not re-encode data if it is already encoded (thanks to Mehmet Bozkurt). (diff)
downloadvmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.tar.gz
vmime-3a5621c2aa3931be608508d4fadc42c2a09cb251.zip
Trivial 64-bit warning fixes.
Diffstat (limited to 'tests/parser/attachmentHelperTest.cpp')
-rw-r--r--tests/parser/attachmentHelperTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser/attachmentHelperTest.cpp b/tests/parser/attachmentHelperTest.cpp
index 142730c5..d764ecc1 100644
--- a/tests/parser/attachmentHelperTest.cpp
+++ b/tests/parser/attachmentHelperTest.cpp
@@ -54,7 +54,7 @@ VMIME_TEST_SUITE_BEGIN
res += "[";
- for (int i = 0 ; i < bdy->getPartCount() ; ++i)
+ for (size_t i = 0 ; i < bdy->getPartCount() ; ++i)
{
vmime::ref <vmime::bodyPart> subPart = bdy->getPartAt(i);