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/messageSetTest.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/messageSetTest.cpp')
-rw-r--r-- | tests/net/messageSetTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/net/messageSetTest.cpp b/tests/net/messageSetTest.cpp index 3aef7ab0..70ba051c 100644 --- a/tests/net/messageSetTest.cpp +++ b/tests/net/messageSetTest.cpp @@ -116,7 +116,7 @@ VMIME_TEST_SUITE_BEGIN(messageSetTest) void testNumberSet_Multiple() { - std::vector <int> numbers; + std::vector <vmime::index_t> numbers; numbers.push_back(1); // test grouping 1:3 numbers.push_back(89); // test sorting numbers.push_back(2); |