Skip to content

Commit ba7304f

Browse files
authored
Merge pull request #1 from sbash64/building-cpp-20
fixing template definition
2 parents b9aeec6 + 6503e01 commit ba7304f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

websocketpp/logger/syslog.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class syslog : public basic<concurrency, names> {
5151
/**
5252
* @param hint A channel type specific hint for how to construct the logger
5353
*/
54-
syslog<concurrency,names>(channel_type_hint::value hint =
54+
syslog(channel_type_hint::value hint =
5555
channel_type_hint::access)
5656
: basic<concurrency,names>(hint), m_channel_type_hint(hint) {}
5757

@@ -60,7 +60,7 @@ class syslog : public basic<concurrency, names> {
6060
* @param channels A set of channels to statically enable
6161
* @param hint A channel type specific hint for how to construct the logger
6262
*/
63-
syslog<concurrency,names>(level channels, channel_type_hint::value hint =
63+
syslog(level channels, channel_type_hint::value hint =
6464
channel_type_hint::access)
6565
: basic<concurrency,names>(channels, hint), m_channel_type_hint(hint) {}
6666

0 commit comments

Comments
 (0)