mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00:00
Modified the parameter of object::convert() from pointer to reference.
This commit is contained in:
+1
-1
@@ -41,7 +41,7 @@ TEST(object, convert)
|
||||
EXPECT_EQ(ret, msgpack::UNPACK_SUCCESS);
|
||||
|
||||
myclass m2;
|
||||
obj.convert(&m2);
|
||||
obj.convert(m2);
|
||||
|
||||
EXPECT_EQ(m1, m2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user