regex: fixes for STLPort in debug mode.

[SVN r8170]
This commit is contained in:
John Maddock
2000-11-11 12:08:55 +00:00
parent 8700307cf5
commit 31c9a1f9c6
2 changed files with 8 additions and 6 deletions

View File

@ -174,7 +174,8 @@ enum match_flags
match_partial = match_continuous << 1, // find partial matches
match_stop = match_partial << 1, // stop after first match (grep)
match_max = match_stop
match_all = match_stop << 1, // must find the whole of input even if match_any is set
match_max = match_all
};