Qualify string and vector with std namespace when used without

using-declaration (#118).  r=bryner

http://groups.google.com/group/airbag-dev/browse_thread/thread/4946d156a37331df


git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@113 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
mmentovai 2007-01-25 21:56:18 +00:00
parent a14ef803d7
commit 482e44bf51

View file

@ -422,7 +422,7 @@ int main(int argc, char **argv) {
}
// extra arguments are symbol paths
vector<string> symbol_paths;
std::vector<std::string> symbol_paths;
if (argc > symbol_path_arg) {
for (int argi = symbol_path_arg; argi < argc; ++argi)
symbol_paths.push_back(argv[argi]);