diff options
author | Richard Linden <none@none> | 2010-10-13 18:41:35 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-10-13 18:41:35 -0700 |
commit | 73b39c9b46ed25ae03b8225758c15325e50fdfe2 (patch) | |
tree | 7d502609402cccaee1cc500d3d042ca076779ab0 /indra/newview/llcommandlineparser.cpp | |
parent | 0732b48be9c6378c31515ed92d29101e3743c8c9 (diff) |
made destination guide url configurable on command line
Diffstat (limited to 'indra/newview/llcommandlineparser.cpp')
-rw-r--r-- | indra/newview/llcommandlineparser.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llcommandlineparser.cpp b/indra/newview/llcommandlineparser.cpp index ee8646aad0..0b59f8bd4b 100644 --- a/indra/newview/llcommandlineparser.cpp +++ b/indra/newview/llcommandlineparser.cpp @@ -341,7 +341,10 @@ bool LLCommandLineParser::parseCommandLine(int argc, char **argv) bool LLCommandLineParser::parseCommandLineString(const std::string& str) { // Split the string content into tokens - boost::escaped_list_separator<char> sep("\\", "\r\n ", "\"'"); + const char* escape_chars = "\\"; + const char* separator_chars = "\r\n "; + const char* quote_chars = "\"'"; + boost::escaped_list_separator<char> sep(escape_chars, separator_chars, quote_chars); boost::tokenizer< boost::escaped_list_separator<char> > tok(str, sep); std::vector<std::string> tokens; // std::copy(tok.begin(), tok.end(), std::back_inserter(tokens)); |