From 85d49f7a476355bbb3456d8984d9846906fbb1a7 Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Tue, 2 Jan 2018 02:18:00 +0100 Subject: [PATCH] logging_unittest: fixed undeclared identifier error (fixes #267) --- src/logging_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging_unittest.cc b/src/logging_unittest.cc index b8a9a8728..aec8ef499 100644 --- a/src/logging_unittest.cc +++ b/src/logging_unittest.cc @@ -273,7 +273,7 @@ void TestLogging(bool check_counts) { << setw(1) << hex << j; { - google::LogMessage outer(__FILE__, __LINE__, google::ERROR); + google::LogMessage outer(__FILE__, __LINE__, GLOG_ERROR); outer.stream() << "outer"; LOG(ERROR) << "inner";