From 9ca6d976848d97684c5c2dba6b3e9cf980a3bf32 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 25 May 2011 23:05:55 +1000 Subject: [PATCH] removed unneeded local variable --- stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream.cpp b/stream.cpp index 25210f23..5ab71bd6 100644 --- a/stream.cpp +++ b/stream.cpp @@ -1,7 +1,7 @@ #include "stream.hpp" std::ostream& -nullstream::put (char c) +nullstream::put (char) { return *this; }