mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-25 18:11:33 +08:00
clang-format
This commit is contained in:
parent
6883267996
commit
bd9e1475e2
@ -89,7 +89,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
// copy from other&& and reset it to disabled state
|
// 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_;
|
max_items_ = other.max_items_;
|
||||||
head_ = other.head_;
|
head_ = other.head_;
|
||||||
|
@ -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_);
|
||||||
|
@ -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>
|
||||||
|
@ -21,8 +21,8 @@ template FMT_API void internal::buffer<char>::append(const char *, const char *)
|
|||||||
template FMT_API void internal::arg_map<format_context>::init(const basic_format_args<format_context> &args);
|
template FMT_API void internal::arg_map<format_context>::init(const basic_format_args<format_context> &args);
|
||||||
template FMT_API std::string internal::vformat<char>(string_view, basic_format_args<format_context>);
|
template FMT_API std::string internal::vformat<char>(string_view, basic_format_args<format_context>);
|
||||||
template FMT_API format_context::iterator internal::vformat_to(internal::buffer<char> &, string_view, basic_format_args<format_context>);
|
template FMT_API format_context::iterator internal::vformat_to(internal::buffer<char> &, string_view, basic_format_args<format_context>);
|
||||||
template FMT_API char* internal::sprintf_format(double, internal::buffer<char> &, sprintf_specs);
|
template FMT_API char *internal::sprintf_format(double, internal::buffer<char> &, sprintf_specs);
|
||||||
template FMT_API char* internal::sprintf_format(long double, internal::buffer<char> &, sprintf_specs);
|
template FMT_API char *internal::sprintf_format(long double, internal::buffer<char> &, sprintf_specs);
|
||||||
|
|
||||||
// Explicit instantiations for wchar_t.
|
// Explicit instantiations for wchar_t.
|
||||||
template FMT_API wchar_t internal::thousands_sep_impl(locale_ref);
|
template FMT_API wchar_t internal::thousands_sep_impl(locale_ref);
|
||||||
|
Loading…
Reference in New Issue
Block a user