Modified the parameter of object::convert() from pointer to reference.

This commit is contained in:
Takatoshi Kondo
2013-09-05 10:17:45 +09:00
parent 1fb707f93f
commit 415b14335f
16 changed files with 78 additions and 69 deletions
+1 -1
View File
@@ -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);
}