Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2019-09-07 20:11:35 +0300
committergabime <gmelman1@gmail.com>2019-09-07 20:11:35 +0300
commitbd9e1475e28272251167bba233f9488cf46f806c (patch)
tree64bee6320931b9aa5837e11a5f8f435119ec63c1 /include/spdlog
parent6883267996ebafd2872db19f9cef3b8f4f568ba5 (diff)
clang-format
Diffstat (limited to 'include/spdlog')
-rw-r--r--include/spdlog/details/circular_q.h2
-rw-r--r--include/spdlog/logger-inl.h12
-rw-r--r--include/spdlog/spdlog.h1
3 files changed, 7 insertions, 8 deletions
diff --git a/include/spdlog/details/circular_q.h b/include/spdlog/details/circular_q.h
index 709e0c24..c5e3d20b 100644
--- a/include/spdlog/details/circular_q.h
+++ b/include/spdlog/details/circular_q.h
@@ -89,7 +89,7 @@ public:
private:
// copy from other&& and reset it to disabled state
- void copy_moveable(circular_q &&other) SPDLOG_NOEXCEPT
+ void copy_moveable(circular_q &&other) SPDLOG_NOEXCEPT
{
max_items_ = other.max_items_;
head_ = other.head_;
diff --git a/include/spdlog/logger-inl.h b/include/spdlog/logger-inl.h
index 11cc27ff..c0ace982 100644
--- a/include/spdlog/logger-inl.h
+++ b/include/spdlog/logger-inl.h
@@ -46,14 +46,14 @@ SPDLOG_INLINE void logger::swap(spdlog::logger &other) SPDLOG_NOEXCEPT
sinks_.swap(other.sinks_);
// swap level_
- auto tmp = other.level_.load();
- tmp = level_.exchange(tmp);
- other.level_.store(tmp);
+ auto other_level = other.level_.load();
+ auto my_level = level_.exchange(other_level);
+ other.level_.store(my_level);
// swap flush level_
- tmp = other.flush_level_.load();
- tmp = flush_level_.exchange(tmp);
- other.flush_level_.store(tmp);
+ other_level = other.flush_level_.load();
+ my_level = flush_level_.exchange(other_level);
+ other.flush_level_.store(my_level);
custom_err_handler_.swap(other.custom_err_handler_);
std::swap(tracer_, other.tracer_);
diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h
index ccedb28b..3638ba12 100644
--- a/include/spdlog/spdlog.h
+++ b/include/spdlog/spdlog.h
@@ -15,7 +15,6 @@
#include "spdlog/version.h"
#include "spdlog/details/synchronous_factory.h"
-
#include <chrono>
#include <functional>
#include <memory>