mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-30 10:29:02 +08:00
Relace remaining const char* with string_view_t in the API
This commit is contained in:
@@ -97,8 +97,8 @@ public:
|
||||
log(source_loc{}, lvl, fmt, args...);
|
||||
}
|
||||
|
||||
void log(source_loc loc, level::level_enum lvl, const char *msg);
|
||||
void log(level::level_enum lvl, const char *msg);
|
||||
void log(source_loc loc, level::level_enum lvl, const string_view_t msg);
|
||||
void log(level::level_enum lvl, string_view_t msg);
|
||||
|
||||
template<typename... Args>
|
||||
void trace(string_view_t fmt, const Args &... args)
|
||||
|
Reference in New Issue
Block a user