$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Rick Weiss (weissric_at_[hidden])
Date: 2006-11-08 13:20:37
Yep, i was right, problem between my seat and the keyboard.
boost.regex  ROCKS,     this repeat stuff is awesome, a huge code/time 
saver
Thank You.
John Maddock wrote:
> Rick Weiss wrote:
> 
>>I am trying to use the repeat capture mechanism in regex i thought i
>>would start with the documentation example, but im having problems
>>compiling it.  Any help is appreciated.
>>
>>(There is likely a problem between my seat and the keyboard)
> 
> 
> :-)
> 
> This is likely the same issue that came up yesterday (!), the extended 
> capture information is optional (see 
> http://www.boost.org/libs/regex/doc/captures.html) to use it both your code 
> and Boost.Regex must be compiled with BOOST_REGEX_MATCH_EXTRA defined.  The 
> best place to define it is in boost/regex/user.hpp BTW then you can't forget 
> it :-)
> 
> HTH, John.