Hi, 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 thanks and regards thameem Disclaimer: This message and any attachment(s) contained here are information that is confidential, proprietary to HCL Technologies and its customers. Contents may be privileged or otherwise protected by law. The information is solely intended for the individual or the entity it is addressed to. If you are not the intended recipient of this message, you are not authorized to read, forward, print, retain, copy or disseminate this message or any part of it. If you have received this e-mail in error, please notify the sender immediately by return e-mail and delete it from your computer. DISCLAIMER This message and any attachment(s) contained here are information that is confidential, proprietary to HCL Technologies and its customers. Contents may be privileged or otherwise protected by law. The information is solely intended for the individual or the entity it is addressed to. If you are not the intended recipient of this message, you are not authorized to read, forward, print, retain, copy or disseminate this message or any part of it. If you have received this e-mail in error, please notify the sender immediately by return e-mail and delete it from your computer
"Thameem Ansari - CTD ,Chennai"
Hi, 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)")' .
I've not used regex in a while, but the thing that jumps out at me 'RegEx' and 'Grep'. I don't think any boost library uses names that are not all lower case. Which version of boost are you using? Could the above type and function be something you created? Jeff Flinn
On Mon, 2005-06-27 at 16:52 +0100, Ben Hutchings wrote:
Disclaimer: This message and any attachment(s) contained here are information that is confidential, proprietary to HCL Technologies and its customers.
I didn't dare read the rest of the message. Try posting without legal threats.
You know, there's a difference between 'legal threats' and a disclaimer.. some companies actually require their employees to include such a disclaimer in their sig. Besides, it's safe to read - as a member of this list, you're considered an intended recipient of this message. :) Regards, Leon Mergen
Leon Mergen wrote:
On Mon, 2005-06-27 at 16:52 +0100, Ben Hutchings wrote:
Disclaimer: This message and any attachment(s) contained here are information that is confidential, proprietary to HCL Technologies and its customers.
I didn't dare read the rest of the message. Try posting without legal threats.
You know, there's a difference between 'legal threats' and a disclaimer..
For all I know, my employer (or that of any other subscriber) could be a potential competitor of HCL Technologies. I wouldn't want to be known to have seen confidential proprietary information from a competitor. That's what I find threatening.
some companies actually require their employees to include such a disclaimer in their sig.
I'm aware of that. Usually I would ignore it but this particular sentence goes beyond the normal nonsense.
Besides, it's safe to read - as a member of this list, you're considered an intended recipient of this message. :)
That's not what I was referring to. Ben.
Ben Hutchings wrote:
Leon Mergen wrote:
some companies actually require their employees to include such a disclaimer in their sig.
I'm aware of that. Usually I would ignore it but this particular sentence goes beyond the normal nonsense.
I find all such disclaimers silly and just an indication of a company which hasn't really bothered to understand what protection of confidential information and liability protection really is. Suggestion to all those in this list, and other Boost lists, that have such company disclaimers: Use the Gmane news interface to post and you wont get those silly disclaimers added. http://gmane.org/ Gmane -- Mail To News And Back Again -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - Grafik/jabber.org
I'm aware of that. Usually I would ignore it but this particular sentence goes beyond the normal nonsense.
I find all such disclaimers silly and just an indication of a company which hasn't really bothered to understand what protection of confidential information and liability protection really is.
Dead right, and remember that the "confidential information" has just been posted to a public email list, which will indexed by Google pretty soon now. Oh and of course you have to read through the "confidential" bit before you even get to the disclaimer. John.
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.
participants (6)
-
Ben Hutchings
-
Jeff Flinn
-
John Maddock
-
Leon Mergen
-
Rene Rivera
-
Thameem Ansari - CTD ,Chennai