diff options
author | Richard Linden <none@none> | 2012-10-22 19:54:10 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-10-22 19:54:10 -0700 |
commit | d6634fcd2433e18eea1a9bf31da6d7e531817d77 (patch) | |
tree | 0d37227fd7424ef329f3dc3d642805a04b5c22b7 /indra/llcommon/llsdparam.cpp | |
parent | 534e0ee0514b482a8b32a72d5afed9a4652c0133 (diff) |
SH-3405 WIP convert existing stats to lltrace system
sanitized param block code to accept isValid and isProvided at any point
added predicates to control serialization
Diffstat (limited to 'indra/llcommon/llsdparam.cpp')
-rw-r--r-- | indra/llcommon/llsdparam.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsdparam.cpp b/indra/llcommon/llsdparam.cpp index 4b8a8dba5c..713f5ac605 100644 --- a/indra/llcommon/llsdparam.cpp +++ b/indra/llcommon/llsdparam.cpp @@ -329,7 +329,7 @@ namespace LLInitParam p.writeValue<LLSD::String>(sd.asString(), name_stack); } - void ParamValue<LLSD, TypeValues<LLSD>, false>::serializeBlock(Parser& p, Parser::name_stack_t& name_stack, const BaseBlock* diff_block) const + void ParamValue<LLSD, TypeValues<LLSD>, false>::serializeBlock(Parser& p, Parser::name_stack_t& name_stack, const predicate_rule_t predicate_rule, const BaseBlock* diff_block) const { // attempt to write LLSD out directly if (!p.writeValue<LLSD>(mValue, name_stack)) |