Boost logo

Boost-Commit :

From: eric_at_[hidden]
Date: 2007-09-05 02:31:29


Author: eric_niebler
Date: 2007-09-05 02:31:27 EDT (Wed, 05 Sep 2007)
New Revision: 39126
URL: http://svn.boost.org/trac/boost/changeset/39126

Log:
remove unused variables
Text files modified:
   trunk/boost/xpressive/detail/static/transforms/as_quantifier.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/xpressive/detail/static/transforms/as_quantifier.hpp
==============================================================================
--- trunk/boost/xpressive/detail/static/transforms/as_quantifier.hpp (original)
+++ trunk/boost/xpressive/detail/static/transforms/as_quantifier.hpp 2007-09-05 02:31:27 EDT (Wed, 05 Sep 2007)
@@ -199,7 +199,7 @@
 
         template<typename Expr, typename State, typename Visitor>
         static typename apply<Expr, State, Visitor>::type
- call(Expr const &expr, State const &state, Visitor &visitor)
+ call(Expr const &expr, State const &, Visitor &visitor)
         {
             return typename apply<Expr, State, Visitor>::type(
                 Grammar::call(expr, alternate_end_xpression(), visitor)
@@ -226,7 +226,7 @@
 
         template<typename Expr, typename State, typename Visitor>
         static typename apply<Expr, State, Visitor>::type
- call(Expr const &expr, State const &state, Visitor &visitor)
+ call(Expr const &expr, State const &, Visitor &visitor)
         {
             int mark_number = proto::arg(proto::left(expr)).mark_number_;
             return typename apply<Expr, State, Visitor>::type(
@@ -270,7 +270,7 @@
 
         template<typename Expr, typename State, typename Visitor>
         static typename apply<Expr, State, Visitor>::type
- call(Expr const &expr, State const &state, Visitor &visitor)
+ call(Expr const &expr, State const &, Visitor &)
         {
             typename apply<Expr, State, Visitor>::type that = {expr};
             return that;


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