clang-format

This commit is contained in:
gabime 2019-09-07 20:11:35 +03:00
parent 6883267996
commit bd9e1475e2
4 changed files with 9 additions and 10 deletions

View File

@ -46,14 +46,14 @@ SPDLOG_INLINE void logger::swap(spdlog::logger &other) SPDLOG_NOEXCEPT
sinks_.swap(other.sinks_); sinks_.swap(other.sinks_);
// swap level_ // swap level_
auto tmp = other.level_.load(); auto other_level = other.level_.load();
tmp = level_.exchange(tmp); auto my_level = level_.exchange(other_level);
other.level_.store(tmp); other.level_.store(my_level);
// swap flush level_ // swap flush level_
tmp = other.flush_level_.load(); other_level = other.flush_level_.load();
tmp = flush_level_.exchange(tmp); my_level = flush_level_.exchange(other_level);
other.flush_level_.store(tmp); other.flush_level_.store(my_level);
custom_err_handler_.swap(other.custom_err_handler_); custom_err_handler_.swap(other.custom_err_handler_);
std::swap(tracer_, other.tracer_); std::swap(tracer_, other.tracer_);

View File

@ -15,7 +15,6 @@
#include "spdlog/version.h" #include "spdlog/version.h"
#include "spdlog/details/synchronous_factory.h" #include "spdlog/details/synchronous_factory.h"
#include <chrono> #include <chrono>
#include <functional> #include <functional>
#include <memory> #include <memory>