diff options
author | Vincent Richard <[email protected]> | 2016-03-13 19:15:22 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2016-03-13 19:15:22 +0000 |
commit | 4fd8976515a7e0a4aa34bad9611e9b67df5a186a (patch) | |
tree | e0553b5613009e20ba08be370754bb6d2a2bda99 /tests/parser/bodyPartTest.cpp | |
parent | Issue #126: fixed some warnings. (diff) | |
download | vmime-4fd8976515a7e0a4aa34bad9611e9b67df5a186a.tar.gz vmime-4fd8976515a7e0a4aa34bad9611e9b67df5a186a.zip |
Issue #126: more warnings fixed.
Diffstat (limited to 'tests/parser/bodyPartTest.cpp')
-rw-r--r-- | tests/parser/bodyPartTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser/bodyPartTest.cpp b/tests/parser/bodyPartTest.cpp index f6f82f75..4dc5d670 100644 --- a/tests/parser/bodyPartTest.cpp +++ b/tests/parser/bodyPartTest.cpp @@ -308,7 +308,7 @@ VMIME_TEST_SUITE_BEGIN(bodyPartTest) static const std::string BODY1_LINE = "BODY1BODY1BODY1BODY1BODY1BODY1BODY1BODY1BODY1BODY1BODY1BODY1BODY1"; static const std::string BODY1_END = "END1END1"; static const unsigned int BODY1_REPEAT = 35000; - static const unsigned int BODY1_LENGTH = + static const size_t BODY1_LENGTH = BODY1_BEGIN.length() + BODY1_LINE.length() * BODY1_REPEAT + BODY1_END.length(); static const std::string BODY2_LINE = "BODY2BODY2BODY2BODY2BODY2BODY2BODY2BODY2BODY2BODY2BODY2BODY2BODY2"; |