changeset 14410:f3c958ae393d

oct-stream.h: Silence unused variable warning
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Sat, 25 Feb 2012 16:45:36 -0500
parents e3dbcb75f557
children b9630dfc4fd9
files src/oct-stream.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/oct-stream.h	Sat Feb 25 10:14:15 2012 -0800
+++ b/src/oct-stream.h	Sat Feb 25 16:45:36 2012 -0500
@@ -374,9 +374,9 @@
   // If the derived class is locale-aware, it must implement this function 
   // in order to set a new locale. By default, this function avoids messing 
   // with locales and ignores its input argument.
-  virtual std::locale imbue ( const std::locale & loc ) 
+  virtual std::locale imbue ( const std::locale &)
     { return std::locale::classic (); }
-  
+
   // Return TRUE if this stream is open.
 
   bool is_open (void) const { return open_state; }