// // Copyright(c) 2015 Gabi Melman. // Distributed under the MIT License (http://opensource.org/licenses/MIT) // #pragma once #include "spdlog/sinks/base_sink.h" #include "spdlog/details/null_mutex.h" #include namespace spdlog { namespace sinks { template class null_sink : public base_sink < Mutex > { protected: void _sink_it(const details::log_msg&) override {} void _flush() override {} }; typedef null_sink null_sink_st; typedef null_sink null_sink_mt; } }