From d3d13329d98b2b26378813a91ad0d4e49045a426 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 28 Feb 2012 01:37:19 -0600 Subject: Made the --debug option's argument a regex --- src/utils.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/utils.cc') diff --git a/src/utils.cc b/src/utils.cc index 2f64bb0a..5260fd42 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -603,7 +603,12 @@ void logger_func(log_level_t level) namespace ledger { -optional _log_category; +optional _log_category; +#if defined(HAVE_BOOST_REGEX_UNICODE) +optional _log_category_re; +#else +optional _log_category_re; +#endif struct __maybe_enable_debugging { __maybe_enable_debugging() { -- cgit v1.2.3