diff options
author | Ima Mechanique <ima.mechanique@secondlife.com> | 2014-01-14 00:22:41 +0000 |
---|---|---|
committer | Ima Mechanique <ima.mechanique@secondlife.com> | 2014-01-14 00:22:41 +0000 |
commit | bc1cecd75435f29d360bc305ed3f20bc2d2dda7e (patch) | |
tree | 96bdd1faeb98e722449734ba8ea5f4d137edb6d6 /indra/llui | |
parent | 640fb0376d8ec59779f05eb698e30c2b8cce92b7 (diff) |
Removing the value "void" from return types and empty argument lists.
Diffstat (limited to 'indra/llui')
-rwxr-xr-x | indra/llui/llkeywords.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llkeywords.cpp b/indra/llui/llkeywords.cpp index 050573e699..9dd14f4a2f 100755 --- a/indra/llui/llkeywords.cpp +++ b/indra/llui/llkeywords.cpp @@ -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) |