Skip to content

Commit cb518f4

Browse files
committed
Merge pull request #73 from ovz/master
Fixed failing test zone_allocate_constructor.
2 parents 271f1fa + 977eab7 commit cb518f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pack_unpack.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct myclass {
3131
myclass() : num(0), str("default") { }
3232

3333
myclass(int num, const std::string& str) :
34-
num(0), str("default") { }
34+
num(num), str(str) { }
3535

3636
~myclass() { }
3737

0 commit comments

Comments
 (0)