split spdlog.cpp to multiple .cpp files

This commit is contained in:
gabime
2019-09-05 14:37:25 +03:00
parent 4c45c6fbd8
commit dae4f9fef6
9 changed files with 156 additions and 340 deletions

14
src/file_sinks.cpp Normal file
View File

@@ -0,0 +1,14 @@
#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>;