Commit 05cbdbc1 authored by gabime's avatar gabime

moved tcp sink to sinks

parent 38584a1f
......@@ -8,6 +8,9 @@
#include <arpa/inet.h>
#include <unistd.h>
namespace spdlog {
namespace sinks {
template<typename Mutex>
class tcp_sink : public spdlog::sinks::base_sink <Mutex>
{
......@@ -49,3 +52,4 @@ private:
};
using tcp_sink_mt = tcp_sink<std::mutex>;
using tcp_sink_st = tcp_sink<spdlog::details::null_mutex>;
}}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment