Boost logo

Boost-Commit :

From: eric_at_[hidden]
Date: 2008-02-28 17:47:13


Author: eric_niebler
Date: 2008-02-28 17:47:12 EST (Thu, 28 Feb 2008)
New Revision: 43433
URL: http://svn.boost.org/trac/boost/changeset/43433

Log:
fix oops
Text files modified:
   trunk/boost/xpressive/detail/core/matcher/end_matcher.hpp | 54 ++++++++++++++++++++--------------------
   trunk/boost/xpressive/detail/detail_fwd.hpp | 4 +-
   2 files changed, 29 insertions(+), 29 deletions(-)

Modified: trunk/boost/xpressive/detail/core/matcher/end_matcher.hpp
==============================================================================
--- trunk/boost/xpressive/detail/core/matcher/end_matcher.hpp (original)
+++ trunk/boost/xpressive/detail/core/matcher/end_matcher.hpp 2008-02-28 17:47:12 EST (Thu, 28 Feb 2008)
@@ -74,34 +74,34 @@
         }
     };
 
- ///////////////////////////////////////////////////////////////////////////////
- // independent_end_matcher
- //
- struct independent_end_matcher
- : quant_style_assertion
- {
- explicit independent_end_matcher(bool pure)
- : pure_(pure)
- {}
-
- template<typename BidiIter, typename Next>
- static bool match(match_state<BidiIter> &state, Next const &)
- {
- if(!this->pure_)
- {
- // Now execute any actions that have been queued
- for(actionable const *actor = state.action_list_.next; 0 != actor; actor = actor->next)
- {
- actor->execute(state.action_args_);
- }
- }
-
- return true;
- }
+ /////////////////////////////////////////////////////////////////////////////////
+ //// independent_end_matcher
+ ////
+ //struct independent_end_matcher
+ // : quant_style_assertion
+ //{
+ // explicit independent_end_matcher(bool pure)
+ // : pure_(pure)
+ // {}
+ //
+ // template<typename BidiIter, typename Next>
+ // bool match(match_state<BidiIter> &state, Next const &) const
+ // {
+ // if(!this->pure_)
+ // {
+ // // Now execute any actions that have been queued
+ // for(actionable const *actor = state.action_list_.next; 0 != actor; actor = actor->next)
+ // {
+ // actor->execute(state.action_args_);
+ // }
+ // }
+ //
+ // return true;
+ // }
 
- private:
- bool pure_;
- };
+ //private:
+ // bool pure_;
+ //};
 
 }}}
 

Modified: trunk/boost/xpressive/detail/detail_fwd.hpp
==============================================================================
--- trunk/boost/xpressive/detail/detail_fwd.hpp (original)
+++ trunk/boost/xpressive/detail/detail_fwd.hpp 2008-02-28 17:47:12 EST (Thu, 28 Feb 2008)
@@ -69,7 +69,7 @@
     //
     struct end_matcher;
 
- struct independent_end_matcher;
+ //struct independent_end_matcher;
 
     struct assert_bos_matcher;
 
@@ -266,7 +266,7 @@
 
     typedef static_xpression<alternate_end_matcher, no_next> alternate_end_xpression;
 
- typedef static_xpression<independent_end_matcher, no_next> independent_end_xpression;
+ //typedef static_xpression<independent_end_matcher, no_next> independent_end_xpression;
 
     typedef static_xpression<true_matcher, no_next> true_xpression;
 


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