# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1330206336 18000 # Node ID f3c958ae393d68745cbdd54f46839bda7788e2e9 # Parent e3dbcb75f55791a99336356f7e7eb11b401c681f oct-stream.h: Silence unused variable warning diff -r e3dbcb75f557 -r f3c958ae393d src/oct-stream.h --- 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; }