Merge pull request #73 from ovz/master

Fixed failing test zone_allocate_constructor.
This commit is contained in:
Takatoshi Kondo 2014-03-30 18:46:15 +09:00
commit cb518f472a

View File

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