mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-14 15:05:37 +02:00
Fixed warnings on MSVC.
This commit is contained in:
@@ -92,8 +92,8 @@ TEST(MSGPACK_RAW_REF, pack_unpack_16_h)
|
||||
msgpack::pack(ss, rr1);
|
||||
std::string packed_str = ss.str();
|
||||
EXPECT_EQ(packed_str[0], static_cast<char>(0xc5u));
|
||||
EXPECT_EQ(packed_str[1], static_cast<char>(0xff));
|
||||
EXPECT_EQ(packed_str[2], static_cast<char>(0xff));
|
||||
EXPECT_EQ(packed_str[1], static_cast<char>(0xffu));
|
||||
EXPECT_EQ(packed_str[2], static_cast<char>(0xffu));
|
||||
EXPECT_EQ(packed_str[3], 'A');
|
||||
|
||||
msgpack::unpacked upd;
|
||||
|
Reference in New Issue
Block a user