Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82715 - trunk/boost/coroutine
From: oliver.kowalke_at_[hidden]
Date: 2013-02-06 20:25:11


Author: olli
Date: 2013-02-04 02:09:38 EST (Mon, 04 Feb 2013)
New Revision: 82715
URL: http://svn.boost.org/trac/boost/changeset/82715

Log:
coroutine: remove unused params

Text files modified:
   trunk/boost/coroutine/coroutine.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/coroutine/coroutine.hpp
==============================================================================
--- trunk/boost/coroutine/coroutine.hpp (original)
+++ trunk/boost/coroutine/coroutine.hpp 2013-02-04 02:09:38 EST (Mon, 04 Feb 2013)
@@ -1377,13 +1377,13 @@
 template< typename Signature >
 inline
 typename coroutine< Signature >::iterator
-range_end( coroutine< Signature > & c)
+range_end( coroutine< Signature > &)
 { return typename coroutine< Signature >::iterator(); }
 
 template< typename Signature >
 inline
 typename coroutine< Signature >::const_iterator
-range_end( coroutine< Signature > const& c)
+range_end( coroutine< Signature > const&)
 { return typename coroutine< Signature >::const_iterator(); }
 
 }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk