Update of /cvsroot/boost/boost/libs/xpressive/example
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6327
Modified Files:
main.cpp
Log Message:
ne syntax for initializing mark tags
Index: main.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/example/main.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- main.cpp 9 Oct 2005 23:17:37 -0000 1.2
+++ main.cpp 29 Oct 2006 06:17:53 -0000 1.3
@@ -88,7 +88,7 @@
char const *str = "I was born on 5/30/1973 at 7am.";
// define some custom mark_tags with names more meaningful than s1, s2,
etc.
- mark_tag day(1), month(2), year(3), delim(4);
+ mark_tag day = {{1}}, month = {{2}}, year = {{3}}, delim = {{4}};
// this regex finds a date
cregex date = (month= repeat<1,2>(_d)) // find the month ...
-------------------------------------------------------------------------
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
|