Merge pull request #1119 from MarkKoester/patch-1

Fix warning: redundant move in return statement
This commit is contained in:
Gabi Melman 2019-06-21 22:33:05 +03:00 committed by GitHub
commit 0cc2ff83ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -114,5 +114,5 @@ SPDLOG_INLINE std::shared_ptr<spdlog::logger> spdlog::async_logger::clone(std::s
cloned->set_level(this->level());
cloned->flush_on(this->flush_level());
cloned->set_error_handler(this->custom_err_handler_);
return std::move(cloned);
return cloned;
}