Commit 04b0634b authored by gabime's avatar gabime

mscv_sink rename

parent 2f8e22d8
......@@ -23,10 +23,10 @@ namespace sinks
* MSVC sink (logging using OutputDebugStringA)
*/
template<class Mutex>
class base_msvc_sink : public base_sink < Mutex >
class msvc_sink : public base_sink < Mutex >
{
public:
explicit base_msvc_sink()
explicit msvc_sink()
{
}
......@@ -41,8 +41,8 @@ protected:
}
};
typedef base_msvc_sink<std::mutex> msvc_sink_mt;
typedef base_msvc_sink<details::null_mutex> msvc_sink_st;
typedef msvc_sink<std::mutex> msvc_sink_mt;
typedef msvc_sink<details::null_mutex> msvc_sink_st;
}
}
......
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