mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
fix typo in comment
This commit is contained in:
parent
57868277db
commit
bd00a0081a
@ -37,7 +37,7 @@ const std::string &logger::name() const { return name_; }
|
||||
void logger::set_formatter(std::unique_ptr<formatter> f) {
|
||||
for (auto it = sinks_.begin(); it != sinks_.end(); ++it) {
|
||||
if (std::next(it) == sinks_.end()) {
|
||||
// last element - we can be move it.
|
||||
// last element - we can move it.
|
||||
(*it)->set_formatter(std::move(f));
|
||||
break; // to prevent clang-tidy warning
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user