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