Fix compile error on configs with c++11 move support

This commit is contained in:
Vinnie Falco
2013-09-05 05:08:41 -07:00
parent 86793468de
commit 429deb959c

View File

@@ -83,8 +83,9 @@ public:
+ ", copy_assign(" + String::fromNumber (copy_assign) + ")"
#if BEAST_COMPILER_SUPPORTS_MOVE_SEMANTICS
+ ", move_ctor(" + String::fromNumber (move_ctor) + ")"
+ ", move_assign(" + String::fromNumber (move_assign) + ")";
+ ", move_assign(" + String::fromNumber (move_assign) + ")"
#endif
;
}
count_type default_ctor;