@@ -58,33 +58,33 @@ namespace log {
5858template <typename concurrency, typename names>
5959class basic {
6060public:
61- basic<concurrency,names> (channel_type_hint::value h =
61+ basic (channel_type_hint::value h =
6262 channel_type_hint::access)
6363 : m_static_channels(0xffffffff )
6464 , m_dynamic_channels(0 )
6565 , m_out(h == channel_type_hint::error ? &std::cerr : &std::cout) {}
6666
67- basic<concurrency,names> (std::ostream * out)
67+ basic (std::ostream * out)
6868 : m_static_channels(0xffffffff )
6969 , m_dynamic_channels(0 )
7070 , m_out(out) {}
7171
72- basic<concurrency,names> (level c, channel_type_hint::value h =
72+ basic (level c, channel_type_hint::value h =
7373 channel_type_hint::access)
7474 : m_static_channels(c)
7575 , m_dynamic_channels(0 )
7676 , m_out(h == channel_type_hint::error ? &std::cerr : &std::cout) {}
7777
78- basic<concurrency,names> (level c, std::ostream * out)
78+ basic (level c, std::ostream * out)
7979 : m_static_channels(c)
8080 , m_dynamic_channels(0 )
8181 , m_out(out) {}
8282
8383 // / Destructor
84- ~basic<concurrency,names> () {}
84+ ~basic () {}
8585
8686 // / Copy constructor
87- basic<concurrency,names> (basic<concurrency,names> const & other)
87+ basic (basic<concurrency,names> const & other)
8888 : m_static_channels(other.m_static_channels)
8989 , m_dynamic_channels(other.m_dynamic_channels)
9090 , m_out(other.m_out)
@@ -97,7 +97,7 @@ class basic {
9797
9898#ifdef _WEBSOCKETPP_MOVE_SEMANTICS_
9999 // / Move constructor
100- basic<concurrency,names> (basic<concurrency,names> && other)
100+ basic (basic<concurrency,names> && other)
101101 : m_static_channels(other.m_static_channels)
102102 , m_dynamic_channels(other.m_dynamic_channels)
103103 , m_out(other.m_out)
0 commit comments