Unverified Commit 0cc2ff83 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #1119 from MarkKoester/patch-1

Fix warning: redundant move in return statement
parents ea5f0711 a9e92d6c
......@@ -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;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment