mirror of
https://github.com/boostorg/regex.git
synced 2025-07-12 11:56:37 +02:00
Minor regex fixes for VC6 (Added some boost:: qualifies to work around lack or Koenig lookup).
[SVN r8238]
This commit is contained in:
@ -56,7 +56,7 @@ void IndexClasses(map_type& m, const std::string& file)
|
||||
std::string::const_iterator start, end;
|
||||
start = file.begin();
|
||||
end = file.end();
|
||||
regex_grep(IndexClassesPred(m, start), start, end, expression);
|
||||
boost::regex_grep(IndexClassesPred(m, start), start, end, expression);
|
||||
}
|
||||
|
||||
|
||||
@ -104,3 +104,4 @@ int main(int argc, const char** argv)
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user