summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/glog/logging.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glog/logging.h.in b/src/glog/logging.h.in
index e8e3e7a..affe0c5 100644
--- a/src/glog/logging.h.in
+++ b/src/glog/logging.h.in
@@ -542,7 +542,7 @@ class LogSink; // defined below
// vector<string> *outvec;
// The cast is to disambiguate NULL arguments.
#define LOG_STRING(severity, outvec) \
- LOG_TO_STRING_##severity(static_cast<vector<string>*>(outvec)).stream()
+ LOG_TO_STRING_##severity(static_cast<std::vector<std::string>*>(outvec)).stream()
#define LOG_IF(severity, condition) \
!(condition) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)