Tweaked dll selection code,

Fixed various errors detected by MWCW and Como


[SVN r18493]
This commit is contained in:
John Maddock
2003-05-22 11:19:58 +00:00
parent 31d1dc1182
commit 89d445c1b6
6 changed files with 15 additions and 14 deletions

View File

@ -42,7 +42,7 @@ class regex_token_iterator_implementation
const regex_type* pre; // the expression
match_flag_type flags; // match flags
std::basic_string<charT> result; // the current string result
std::vector<int>::size_type N; // the current sub-expression being enumerated
int N; // the current sub-expression being enumerated
std::vector<int> subs; // the sub-expressions to enumerate
public: