We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b17731 commit c537274Copy full SHA for c537274
doc/howto.xml
@@ -115,7 +115,8 @@ if (vm.count("response-file")) {
115
ss << ifs.rdbuf();
116
// Split the file content
117
char_separator<char> sep(" \n\r");
118
- tokenizer<char_separator<char> > tok(ss.str(), sep);
+ std::string ResponsefileContents( ss.str() );
119
+ tokenizer<char_separator<char> > tok(ResponsefileContents, sep);
120
vector<string> args;
121
copy(tok.begin(), tok.end(), back_inserter(args));
122
// Parse the file and store the options
0 commit comments