mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 04:52:59 +01:00
Merge pull request #73 from ovz/master
Fixed failing test zone_allocate_constructor.
This commit is contained in:
commit
cb518f472a
@ -31,7 +31,7 @@ struct myclass {
|
|||||||
myclass() : num(0), str("default") { }
|
myclass() : num(0), str("default") { }
|
||||||
|
|
||||||
myclass(int num, const std::string& str) :
|
myclass(int num, const std::string& str) :
|
||||||
num(0), str("default") { }
|
num(num), str(str) { }
|
||||||
|
|
||||||
~myclass() { }
|
~myclass() { }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user