Merge pull request #590 from xia-stan/master

CrowCpp/Crow#585 : Resolves issue with blueprint assignments.
This commit is contained in:
Igor Mróz 2023-02-03 21:33:29 +01:00 committed by GitHub
commit 5927b958de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}