Skip to content

Commit c537274

Browse files
committed
Doc fix; refs #4858
[SVN r67030]
1 parent 4b17731 commit c537274

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/howto.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ if (vm.count("response-file")) {
115115
ss << ifs.rdbuf();
116116
// Split the file content
117117
char_separator<char> sep(" \n\r");
118-
tokenizer<char_separator<char> > tok(ss.str(), sep);
118+
std::string ResponsefileContents( ss.str() );
119+
tokenizer<char_separator<char> > tok(ResponsefileContents, sep);
119120
vector<string> args;
120121
copy(tok.begin(), tok.end(), back_inserter(args));
121122
// Parse the file and store the options

0 commit comments

Comments
 (0)