mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 01:29:35 +08:00
revert Args& by referebce in create
This commit is contained in:
@@ -112,7 +112,7 @@ std::shared_ptr<logger> create(const std::string& logger_name, const It& sinks_b
|
||||
// Create and register a logger with templated sink type
|
||||
// Example: spdlog::create<daily_file_sink_st>("mylog", "dailylog_filename", "txt");
|
||||
template <typename Sink, typename... Args>
|
||||
std::shared_ptr<spdlog::logger> create(const std::string& logger_name, Args&...);
|
||||
std::shared_ptr<spdlog::logger> create(const std::string& logger_name, Args...);
|
||||
|
||||
|
||||
// Register the given logger with the given name
|
||||
|
Reference in New Issue
Block a user