Unverified Commit 6bfc0ec3 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #1457 from Ruffel/fix-clang-tidy-warning

Resolve erroneous clang-tidy warning about using a moved from pointer
parents 05ecad42 f999d879
......@@ -89,6 +89,8 @@ SPDLOG_INLINE void logger::set_formatter(std::unique_ptr<formatter> f)
{
// last element - we can be move it.
(*it)->set_formatter(std::move(f));
break;
}
else
{
......
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