mirror of
https://github.com/gabime/spdlog.git
synced 2025-10-02 03:19:02 +08:00
Fixed issue #747
This commit is contained in:
@@ -45,22 +45,22 @@ public:
|
||||
template<typename... Args>
|
||||
void log(level::level_enum lvl, const char *msg);
|
||||
|
||||
template<typename Arg1, typename... Args>
|
||||
template<typename... Args>
|
||||
void trace(const char *fmt, const Args &... args);
|
||||
|
||||
template<typename Arg1, typename... Args>
|
||||
template<typename... Args>
|
||||
void debug(const char *fmt, const Args &... args);
|
||||
|
||||
template<typename Arg1, typename... Args>
|
||||
template<typename... Args>
|
||||
void info(const char *fmt, const Args &... args);
|
||||
|
||||
template<typename Arg1, typename... Args>
|
||||
template<typename... Args>
|
||||
void warn(const char *fmt, const Args &... args);
|
||||
|
||||
template<typename Arg1, typename... Args>
|
||||
template<typename... Args>
|
||||
void error(const char *fmt, const Args &... args);
|
||||
|
||||
template<typename Arg1, typename... Args>
|
||||
template<typename... Args>
|
||||
void critical(const char *fmt, const Args &... args);
|
||||
|
||||
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
|
||||
|
Reference in New Issue
Block a user