summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author <shinichiro.hamaji@gmail.com>2009-01-23 18:49:53 +0000
committer <shinichiro.hamaji@gmail.com>2009-01-23 18:49:53 +0000
commit0c6fdbd87f4c96b42822392fbb485e3e1025ad94 (patch)
treeed9f5462f1cd998dfebf2042542d6e07d1e91b36 /src
parent630e77bac08ad1b51538fd50e506d7a2c0f7befb (diff)
downloadglog-0c6fdbd87f4c96b42822392fbb485e3e1025ad94.tar.gz
glog-0c6fdbd87f4c96b42822392fbb485e3e1025ad94.tar.bz2
glog-0c6fdbd87f4c96b42822392fbb485e3e1025ad94.zip
Remove the name of unused parameter.
git-svn-id: https://google-glog.googlecode.com/svn/trunk@32 eb4d4688-79bd-11dd-afb4-1d65580434c0
Diffstat (limited to 'src')
-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 607ec1f..2f74290 100644
--- a/src/glog/logging.h.in
+++ b/src/glog/logging.h.in
@@ -562,7 +562,7 @@ struct DummyClassToDefineOperator {};
// This declaration will allow use to use CHECK macros for user
// defined classes which have operator<< (e.g., stl_logging.h).
inline std::ostream& operator<<(
- std::ostream& out, const google::DummyClassToDefineOperator& dummy) {
+ std::ostream& out, const google::DummyClassToDefineOperator&) {
return out;
}