Remove the name of unused parameter.
author <shinichiro.hamaji@gmail.com> <>
Fri, 23 Jan 2009 18:49:53 +0000 (18:49 +0000)
committer <shinichiro.hamaji@gmail.com> <>
Fri, 23 Jan 2009 18:49:53 +0000 (18:49 +0000)
git-svn-id: https://google-glog.googlecode.com/svn/trunk@32 eb4d4688-79bd-11dd-afb4-1d65580434c0

src/glog/logging.h.in

index 607ec1f..2f74290 100644 (file)
@@ -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;
 }