summaryrefslogtreecommitdiff
path: root/indra/llcommon/tests/llsdserialize_test.cpp
diff options
context:
space:
mode:
authornat-goodspeed <nat@lindenlab.com>2023-03-03 17:34:03 -0500
committerGitHub <noreply@github.com>2023-03-03 17:34:03 -0500
commitf2a784f0d07ac8bedb4e84f8ce60bfbe513d7dfb (patch)
tree9789b0035169b494e360d47ec2449a7614cd36c8 /indra/llcommon/tests/llsdserialize_test.cpp
parentd9ef67187532f528a0a8072da55ac0237ec3e4ff (diff)
parent42b1fd21814e679a1557e0d5a55943c5b0e63723 (diff)
Merge pull request #99 from secondlife/sl-18330-fixes
SL-18330: Address further code review comments
Diffstat (limited to 'indra/llcommon/tests/llsdserialize_test.cpp')
-rw-r--r--indra/llcommon/tests/llsdserialize_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/tests/llsdserialize_test.cpp b/indra/llcommon/tests/llsdserialize_test.cpp
index 29e3007aff..618f33cc13 100644
--- a/indra/llcommon/tests/llsdserialize_test.cpp
+++ b/indra/llcommon/tests/llsdserialize_test.cpp
@@ -276,7 +276,7 @@ namespace tut
// why does LLSDSerialize::deserialize() reverse the parse() params??
mParser = [parser](std::istream& istr, LLSD& data, llssize max_bytes)
{
- return (parser(data, istr, max_bytes) > 0);
+ return parser(data, istr, max_bytes);
};
}