diff options
author | Vincent Richard <[email protected]> | 2016-03-23 19:32:13 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2016-03-23 19:32:13 +0000 |
commit | b03c398b47ccfb3c41d5c67a73533d8d56f05962 (patch) | |
tree | e79bc1c6c5f5c8c20a07ffd694eca15d986e8215 /tests/net/pop3/POP3UtilsTest.cpp | |
parent | Issue #126: fixed deprecated GnuTLS types. (diff) | |
download | vmime-b03c398b47ccfb3c41d5c67a73533d8d56f05962.tar.gz vmime-b03c398b47ccfb3c41d5c67a73533d8d56f05962.zip |
Fixed types.
Diffstat (limited to '')
-rw-r--r-- | tests/net/pop3/POP3UtilsTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/net/pop3/POP3UtilsTest.cpp b/tests/net/pop3/POP3UtilsTest.cpp index cc2cb7d3..69e5e795 100644 --- a/tests/net/pop3/POP3UtilsTest.cpp +++ b/tests/net/pop3/POP3UtilsTest.cpp @@ -58,7 +58,7 @@ VMIME_TEST_SUITE_BEGIN(POP3UtilsTest) vmime::shared_ptr <POP3Response> resp = POP3Response::readMultilineResponse(conn); - std::map <vmime::index_t, vmime::string> result; + std::map <vmime::size_t, vmime::string> result; POP3Utils::parseMultiListOrUidlResponse(resp, result); VASSERT_EQ("Count", 5, result.size()); |