From e8a27a1cee60753eaa43fb4591138fe1f893716d Mon Sep 17 00:00:00 2001 From: gabime Date: Thu, 9 Apr 2015 18:14:39 +0300 Subject: [PATCH] fixed gcc pedantic warning --- include/spdlog/details/pattern_formatter_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/pattern_formatter_impl.h b/include/spdlog/details/pattern_formatter_impl.h index 62965364..a5b2d21f 100644 --- a/include/spdlog/details/pattern_formatter_impl.h +++ b/include/spdlog/details/pattern_formatter_impl.h @@ -435,7 +435,7 @@ class full_formatter :public flag_formatter //no datetime needed #else (void)tm_time; -#endif; +#endif #ifndef SPDLOG_NO_NAME msg.formatted << '[' << msg.logger_name << "] ";