mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
Merge pull request #260 from erikaldsund/fix_rvalue_copy_ctor_bug
Fixed bug in json::rvalue copy constructor
This commit is contained in:
commit
6876a08e61
@ -249,10 +249,10 @@ namespace crow
|
||||
start_ = r.start_;
|
||||
end_ = r.end_;
|
||||
key_ = r.key_;
|
||||
copy_l(r);
|
||||
t_ = r.t_;
|
||||
nt_ = r.nt_;
|
||||
option_ = r.option_;
|
||||
copy_l(r);
|
||||
return *this;
|
||||
}
|
||||
rvalue& operator = (rvalue&& r) noexcept
|
||||
|
Loading…
Reference in New Issue
Block a user