Minor regex fixes for VC6 (Added some boost:: qualifies to work around lack or Koenig lookup).

[SVN r8238]
This commit is contained in:
John Maddock
2000-11-17 11:35:02 +00:00
parent 36e4289aaa
commit c0399a3a57
8 changed files with 19 additions and 12 deletions

View File

@ -53,7 +53,7 @@ void IndexClasses(const std::string& file)
start = file.begin();
end = file.end();
base = start;
regex_grep(grep_callback, start, end, expression);
boost::regex_grep(grep_callback, start, end, expression);
}
#include <fstream>
@ -96,3 +96,4 @@ int main(int argc, const char** argv)
}
return 0;
}