Fix method signatures in FSLSLProprocessor for "not-supported" case

master
Ansariel 2015-04-28 20:40:43 +02:00
parent bf89736f2d
commit 760be77eb5
1 changed files with 2 additions and 2 deletions

View File

@ -1523,7 +1523,7 @@ void FSLSLPreprocessor::start_process()
#else
std::string FSLSLPreprocessor::encode(std::string script)
std::string FSLSLPreprocessor::encode(const std::string& script)
{
LLStringUtil::format_map_t args;
args["[WHERE]"] = "encode";
@ -1531,7 +1531,7 @@ std::string FSLSLPreprocessor::encode(std::string script)
return script;
}
std::string FSLSLPreprocessor::decode(std::string script)
std::string FSLSLPreprocessor::decode(const std::string& script)
{
LLStringUtil::format_map_t args;
args["[WHERE]"] = "decode";