mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-10-16 18:56:54 +02:00
Fixed failing test zone_allocate_constructor.
Corrected a typo in definition of myclass constructor with parameters.
This commit is contained in:
@@ -31,7 +31,7 @@ struct myclass {
|
||||
myclass() : num(0), str("default") { }
|
||||
|
||||
myclass(int num, const std::string& str) :
|
||||
num(0), str("default") { }
|
||||
num(num), str(str) { }
|
||||
|
||||
~myclass() { }
|
||||
|
||||
|
Reference in New Issue
Block a user