From: John Maddock (john_at_[hidden])
Date: 2003-11-18 07:16:15


> The boost::regex class is crashing when I construct it with some regular
> expressions. For example: "(value|default)[^}]*\{" will crash and
> "value|default" does not.

The one that's "crashing" is not a valid regular expression - so I hope that
you are catching the exception that gets thrown?

Otherwise it will "crash" due to the unhandled exception ;-)

John.