Removing the value "void" from return types and empty argument lists.

master
Ima Mechanique 2014-01-14 00:22:41 +00:00
parent 640fb0376d
commit bc1cecd754
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ std::string LLKeywords::getArguments(LLSD& arguments)
LL_WARNS("SyntaxLSL")
<< "Not an array! Invalid arguments LLSD passed to function." << arguments << LL_ENDL;
}
return argString == "" ? " void " : argString;
return argString == "" ? "" : argString;
}
std::string LLKeywords::getAttribute(const std::string& key)