clang format
This commit is contained in:
parent
7147da468f
commit
070dd181df
@ -262,7 +262,6 @@ struct my_type
|
||||
: i(i){};
|
||||
};
|
||||
|
||||
|
||||
// Using a namespace alias like fmt_lib is not allowed when extending an existing namespace,
|
||||
// but the correct namespace can still be selected with the SPDLOG_USE_STD_FORMAT macro.
|
||||
#ifdef SPDLOG_USE_STD_FORMAT
|
||||
|
@ -21,7 +21,8 @@ class SPDLOG_API periodic_worker
|
||||
{
|
||||
public:
|
||||
template<typename Rep, typename Period>
|
||||
periodic_worker(const std::function<void()> &callback_fun, std::chrono::duration<Rep, Period> interval) {
|
||||
periodic_worker(const std::function<void()> &callback_fun, std::chrono::duration<Rep, Period> interval)
|
||||
{
|
||||
active_ = (interval > std::chrono::duration<Rep, Period>::zero());
|
||||
if (!active_)
|
||||
{
|
||||
|
@ -293,7 +293,8 @@ inline void critical(const T &msg)
|
||||
//
|
||||
|
||||
#ifndef SPDLOG_NO_SOURCE_LOC
|
||||
#define SPDLOG_LOGGER_CALL(logger, level, ...) (logger)->log(spdlog::source_loc{__FILE__, __LINE__, SPDLOG_FUNCTION}, level, __VA_ARGS__)
|
||||
# define SPDLOG_LOGGER_CALL(logger, level, ...) \
|
||||
(logger)->log(spdlog::source_loc{__FILE__, __LINE__, SPDLOG_FUNCTION}, level, __VA_ARGS__)
|
||||
#else
|
||||
# define SPDLOG_LOGGER_CALL(logger, level, ...) (logger)->log(spdlog::source_loc{}, level, __VA_ARGS__)
|
||||
#endif
|
||||
|
@ -1,6 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
|
||||
#if defined(__GNUC__) && __GNUC__ == 12
|
||||
# pragma GCC diagnostic push
|
||||
# pragma GCC diagnostic ignored "-Wmaybe-uninitialized" // Workaround for GCC 12
|
||||
|
Loading…
Reference in New Issue
Block a user