We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d5c680 commit eb765d2Copy full SHA for eb765d2
test/msgpack_container.cpp
@@ -59,7 +59,7 @@ TEST(MSGPACK_STL, simple_buffer_vector_bool)
59
{
60
vector<bool> val1;
61
for (unsigned int i = 0; i < kElements; i++)
62
- val1.push_back(i % 2);
+ val1.push_back(i % 2 ? false : true);
63
msgpack::sbuffer sbuf;
64
msgpack::pack(sbuf, val1);
65
msgpack::unpacked ret;
0 commit comments