27 Jun
2005
27 Jun
'05
4:55 p.m.
I am facing the following problem I have the following code in my application written in VC++ 6.0
std::vectorstd::string v; boost::RegEx expr("(?=adc)", TRUE); expr.Grep(v, "XYZ(M-ADC)");
While debugging, then application hangs in the statement 'expr.Grep(v, "XYZ(M-ADC)")' .
If you have faced same kind of problem or you have any solution, please mail me the solution as soon as possible
Works for me. The only thing I can think of is that you're linking to a library that is somehow binary incompatible with your application (built against the wrong C runtime, or not using STLport when your application is). However that's actually quite hard to do! John.