Refactored code so that __try statements only call bool (void) functions.

[SVN r21286]
This commit is contained in:
John Maddock
2003-12-16 13:04:01 +00:00
parent cd0072b3e7
commit 7858e47a26
2 changed files with 41 additions and 26 deletions

View File

@ -287,7 +287,13 @@ public:
match_flag_type f);
bool match();
bool match_imp();
bool find();
bool find_imp();
#ifdef BOOST_REGEX_HAS_MS_STACK_GUARD
typedef bool (perl_matcher::*protected_proc_type)();
bool protected_call(protected_proc_type);
#endif
void setf(match_flag_type f)
{ m_match_flags |= f; }