Update of /cvsroot/boost/boost/boost/xpressive/detail/core/matcher
In directory
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4949/boost/xpressive/detail/core/matcher
Modified Files:
action_matcher.hpp any_matcher.hpp assert_bos_matcher.hpp
assert_eos_matcher.hpp epsilon_matcher.hpp
Log Message:
proto2
Index: action_matcher.hpp
===================================================================
RCS file:
/cvsroot/boost/boost/boost/xpressive/detail/core/matcher/action_matcher.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- action_matcher.hpp 24 Apr 2006 16:26:27 -0000 1.4
+++ action_matcher.hpp 29 Oct 2006 06:14:41 -0000 1.5
@@ -42,7 +42,7 @@
action_matcher &operator =(action_matcher const &)
{
- return *this; // no-node
+ return *this; // no-op
}
template<typename BidiIter, typename Next>
Index: any_matcher.hpp
===================================================================
RCS file:
/cvsroot/boost/boost/boost/xpressive/detail/core/matcher/any_matcher.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- any_matcher.hpp 26 Nov 2005 17:12:25 -0000 1.2
+++ any_matcher.hpp 29 Oct 2006 06:14:41 -0000 1.3
@@ -24,8 +24,9 @@
// any_matcher
//
struct any_matcher
- : quant_style_fixed_width<1>
{
+ BOOST_XPR_QUANT_STYLE(quant_fixed_width, 1, true)
+
template<typename BidiIter, typename Next>
static bool match(state_type<BidiIter> &state, Next const &next)
{
Index: assert_bos_matcher.hpp
===================================================================
RCS file:
/cvsroot/boost/boost/boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- assert_bos_matcher.hpp 26 Nov 2005 17:12:25 -0000 1.2
+++ assert_bos_matcher.hpp 29 Oct 2006 06:14:41 -0000 1.3
@@ -24,8 +24,9 @@
// assert_bos_matcher
// match the beginning of the sequence (\A)
struct assert_bos_matcher
- : quant_style_assertion
{
+ BOOST_XPR_QUANT_STYLE(quant_none, 0, true)
+
template<typename BidiIter, typename Next>
static bool match(state_type<BidiIter> &state, Next const &next)
{
Index: assert_eos_matcher.hpp
===================================================================
RCS file:
/cvsroot/boost/boost/boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- assert_eos_matcher.hpp 26 Nov 2005 17:12:25 -0000 1.2
+++ assert_eos_matcher.hpp 29 Oct 2006 06:14:41 -0000 1.3
@@ -24,8 +24,9 @@
// assert_eos_matcher
// match the end of the sequence (\Z)
struct assert_eos_matcher
- : quant_style_assertion
{
+ BOOST_XPR_QUANT_STYLE(quant_none, 0, true)
+
template<typename BidiIter, typename Next>
static bool match(state_type<BidiIter> &state, Next const &next)
{
Index: epsilon_matcher.hpp
===================================================================
RCS file:
/cvsroot/boost/boost/boost/xpressive/detail/core/matcher/epsilon_matcher.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- epsilon_matcher.hpp 17 Apr 2006 19:36:52 -0000 1.5
+++ epsilon_matcher.hpp 29 Oct 2006 06:14:41 -0000 1.6
@@ -24,8 +24,9 @@
// epsilon_matcher
//
struct epsilon_matcher
- : quant_style_assertion
{
+ BOOST_XPR_QUANT_STYLE(quant_none, 0, true)
+
template<typename BidiIter, typename Next>
static bool match(state_type<BidiIter> &state, Next const &next)
{
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|