mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix compile error on configs with c++11 move support
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user