From: Jim Ray Date: Mon, 31 Jul 2017 05:30:33 +0000 (-0700) Subject: Fix LOG_EVERY_N with clang -Wunused-local-typedef X-Git-Tag: accepted/tizen/5.0/unified/20181102.024921~28^2~1 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fglog.git;a=commitdiff_plain;h=8b3023f7e4ca46e0ecf5f660dd7340c79139bc34 Fix LOG_EVERY_N with clang -Wunused-local-typedef Glog uses a pre-C++11 compile time assert to verify the validity of the severity parameter for LOG_EVERY_N. Unfortunately, some compilers will complain about the usage of LOG_EVERY_N with "-Wunused-local-typedef" due to the way the compile time assert is constructed. This makes it impossible to use LOG_EVERY_N with this warning treated as an error. The fix simply removes the assert entirely. This is safe to do since you can't put anything invalid into the severity parameters without generating a compile error elsewhere. This has been safe to do ever since the GLOG_ prefixes were added as part of 6febec361e. Fixes #223 --- diff --git a/src/glog/logging.h.in b/src/glog/logging.h.in index 35c65be..5d6fead 100644 --- a/src/glog/logging.h.in +++ b/src/glog/logging.h.in @@ -938,9 +938,6 @@ bool IsFailureSignalHandlerInstalled(); typedef @ac_google_namespace@::glog_internal_namespace_::CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] #define LOG_EVERY_N(severity, n) \ - GOOGLE_GLOG_COMPILE_ASSERT(@ac_google_namespace@::GLOG_ ## severity < \ - @ac_google_namespace@::NUM_SEVERITIES, \ - INVALID_REQUESTED_LOG_SEVERITY); \ SOME_KIND_OF_LOG_EVERY_N(severity, (n), @ac_google_namespace@::LogMessage::SendToLog) #define SYSLOG_EVERY_N(severity, n) \ diff --git a/src/windows/glog/logging.h b/src/windows/glog/logging.h index f521a2b..f828bc7 100755 --- a/src/windows/glog/logging.h +++ b/src/windows/glog/logging.h @@ -942,9 +942,6 @@ bool IsFailureSignalHandlerInstalled(); typedef google::glog_internal_namespace_::CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] #define LOG_EVERY_N(severity, n) \ - GOOGLE_GLOG_COMPILE_ASSERT(google::GLOG_ ## severity < \ - google::NUM_SEVERITIES, \ - INVALID_REQUESTED_LOG_SEVERITY); \ SOME_KIND_OF_LOG_EVERY_N(severity, (n), google::LogMessage::SendToLog) #define SYSLOG_EVERY_N(severity, n) \