Unverified Commit 23bf4b79 authored by Ge Jun's avatar Ge Jun Committed by GitHub

Merge pull request #902 from liupengs/fix-bug-log-conflict

fix bug: logging namespace conflict
parents ce170f42 ee1fee9a
......@@ -383,7 +383,7 @@ const LogSeverity BLOG_0 = BLOG_ERROR;
// LOG_IS_ON(DFATAL) always holds in debug mode. In particular, CHECK()s will
// always fire if they fail.
#define LOG_IS_ON(severity) \
(logging::BLOG_##severity >= ::logging::GetMinLogLevel())
(::logging::BLOG_##severity >= ::logging::GetMinLogLevel())
#if defined(__GNUC__)
// We emit an anonymous static int* variable at every VLOG_IS_ON(n) site.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment