mirror of https://github.com/gabime/spdlog.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
601 B
C++
14 lines
601 B
C++
![]()
6 years ago
|
#include "spdlog/details/null_mutex.h"
|
||
|
#include "spdlog/async.h"
|
||
|
|
||
|
#include "spdlog/sinks/base_sink-inl.h"
|
||
|
template class spdlog::sinks::base_sink<std::mutex>;
|
||
|
template class spdlog::sinks::base_sink<spdlog::details::null_mutex>;
|
||
|
|
||
|
#include "spdlog/sinks/basic_file_sink-inl.h"
|
||
|
template class spdlog::sinks::basic_file_sink<std::mutex>;
|
||
|
template class spdlog::sinks::basic_file_sink<spdlog::details::null_mutex>;
|
||
|
|
||
|
#include "spdlog/sinks/rotating_file_sink-inl.h"
|
||
|
template class spdlog::sinks::rotating_file_sink<std::mutex>;
|
||
|
template class spdlog::sinks::rotating_file_sink<spdlog::details::null_mutex>;
|