mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
Merge pull request #590 from xia-stan/master
CrowCpp/Crow#585 : Resolves issue with blueprint assignments.
This commit is contained in:
commit
5927b958de
@ -1122,8 +1122,12 @@ namespace crow
|
||||
Blueprint& operator=(Blueprint&& value) noexcept
|
||||
{
|
||||
prefix_ = std::move(value.prefix_);
|
||||
static_dir_ = std::move(value.static_dir_);
|
||||
templates_dir_ = std::move(value.templates_dir_);
|
||||
all_rules_ = std::move(value.all_rules_);
|
||||
catchall_rule_ = std::move(value.catchall_rule_);
|
||||
blueprints_ = std::move(value.blueprints_);
|
||||
mw_indices_ = std::move(value.mw_indices_);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user