Fixed failing test zone_allocate_constructor.

Corrected a typo in definition of myclass constructor with parameters.
This commit is contained in:
ovz 2014-03-18 14:25:55 -07:00
parent 126e4d8414
commit 977eab7c4a

View File

@ -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() { }