From 0b3c27d042e22c7f08c4547a6ead74016948baaa Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Tue, 30 Mar 2021 23:47:48 +0200 Subject: [PATCH] fully qualify std::string --- src/glog/logging.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glog/logging.h.in b/src/glog/logging.h.in index 3d96390..5a7fc4b 100644 --- a/src/glog/logging.h.in +++ b/src/glog/logging.h.in @@ -578,7 +578,7 @@ class LogSink; // defined below // NOTE: LOG(severity) expands to LogMessage().stream() for the specified // severity. #define LOG_TO_STRING(severity, message) \ - LOG_TO_STRING_##severity(static_cast(message)).stream() + LOG_TO_STRING_##severity(static_cast(message)).stream() // If a non-NULL pointer is given, we push the message onto the end // of a vector of strings; otherwise, we report it with LOG(severity).