From c537274c445971c50e57cf79493c4332e7d9261c Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Sun, 5 Dec 2010 20:16:57 +0000 Subject: [PATCH] Doc fix; refs #4858 [SVN r67030] --- doc/howto.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/howto.xml b/doc/howto.xml index 86fdabe..d260259 100644 --- a/doc/howto.xml +++ b/doc/howto.xml @@ -115,7 +115,8 @@ if (vm.count("response-file")) { ss << ifs.rdbuf(); // Split the file content char_separator sep(" \n\r"); - tokenizer > tok(ss.str(), sep); + std::string ResponsefileContents( ss.str() ); + tokenizer > tok(ResponsefileContents, sep); vector args; copy(tok.begin(), tok.end(), back_inserter(args)); // Parse the file and store the options