summaryrefslogtreecommitdiff
path: root/src/glog/logging.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/glog/logging.h.in')
-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 f693068..d9aca8a 100644
--- a/src/glog/logging.h.in
+++ b/src/glog/logging.h.in
@@ -1485,7 +1485,7 @@ class GOOGLE_GLOG_DLL_DECL NullStream : public LogMessage::LogStream {
// converted to LogStream and the message will be computed and then
// quietly discarded.
template<class T>
-inline NullStream& operator<<(NullStream &str, const T &value) { return str; }
+inline NullStream& operator<<(NullStream &str, const T &) { return str; }
// Similar to NullStream, but aborts the program (without stack
// trace), like LogMessageFatal.