diff options
author | Vincent Richard <[email protected]> | 2016-03-23 19:05:59 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2016-03-23 19:05:59 +0000 |
commit | 4b62ae41746e82d5a1638dac5ad0c19ae8c5cd39 (patch) | |
tree | e40ba4c8394e7fc5ced7190f2feb5eb89ed548b9 /tests/net/pop3/POP3UtilsTest.cpp | |
parent | Fixed #135: getPeerAddress() is incorrect. Error handling. (diff) | |
download | vmime-4b62ae41746e82d5a1638dac5ad0c19ae8c5cd39.tar.gz vmime-4b62ae41746e82d5a1638dac5ad0c19ae8c5cd39.zip |
Issue #126: fixed warnings about sign mismatch.
Diffstat (limited to 'tests/net/pop3/POP3UtilsTest.cpp')
-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 55a99806..cc2cb7d3 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 <int, vmime::string> result; + std::map <vmime::index_t, vmime::string> result; POP3Utils::parseMultiListOrUidlResponse(resp, result); VASSERT_EQ("Count", 5, result.size()); |