From 6503e01b34f3f73265bf68c8b7dd88b38e77297d Mon Sep 17 00:00:00 2001 From: Seth Bashford Date: Sat, 8 Oct 2022 10:06:09 -0500 Subject: [PATCH] fixing template definition --- websocketpp/logger/syslog.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocketpp/logger/syslog.hpp b/websocketpp/logger/syslog.hpp index 513abee4a..6a27bfe5e 100644 --- a/websocketpp/logger/syslog.hpp +++ b/websocketpp/logger/syslog.hpp @@ -51,7 +51,7 @@ class syslog : public basic { /** * @param hint A channel type specific hint for how to construct the logger */ - syslog(channel_type_hint::value hint = + syslog(channel_type_hint::value hint = channel_type_hint::access) : basic(hint), m_channel_type_hint(hint) {} @@ -60,7 +60,7 @@ class syslog : public basic { * @param channels A set of channels to statically enable * @param hint A channel type specific hint for how to construct the logger */ - syslog(level channels, channel_type_hint::value hint = + syslog(level channels, channel_type_hint::value hint = channel_type_hint::access) : basic(channels, hint), m_channel_type_hint(hint) {}