From 5cf84a05e734dbd7872865bcbc67d70c596aa541 Mon Sep 17 00:00:00 2001 From: Nick Terrell Date: Fri, 27 Jan 2017 13:26:44 -0800 Subject: [PATCH] Revert unnecessary change to Logging.h --- contrib/pzstd/Logging.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/pzstd/Logging.h b/contrib/pzstd/Logging.h index 6d5582a0..76c982ab 100644 --- a/contrib/pzstd/Logging.h +++ b/contrib/pzstd/Logging.h @@ -37,8 +37,8 @@ class Logger { return level <= level_; } - template - void operator()(int level, String fmt, Args... args) { + template + void operator()(int level, const char *fmt, Args... args) { if (level > level_) { return; }