Skip to content
Snippets Groups Projects
Commit 61ec84b1 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-476: Add llsd::clone(), llsd::shallow() aliases

for new llsd_clone(), llsd_shallow() functions.
parent ca6f0929
No related branches found
No related tags found
No related merge requests found
...@@ -547,6 +547,16 @@ LLSD llsd_clone(LLSD value, LLSD filter = LLSD()); ...@@ -547,6 +547,16 @@ LLSD llsd_clone(LLSD value, LLSD filter = LLSD());
// the filter parameter. // the filter parameter.
LLSD llsd_shallow(LLSD value, LLSD filter = LLSD()); LLSD llsd_shallow(LLSD value, LLSD filter = LLSD());
namespace llsd
{
// llsd namespace aliases
inline
LLSD clone (LLSD value, LLSD filter=LLSD()) { return llsd_clone (value, filter); }
inline
LLSD shallow(LLSD value, LLSD filter=LLSD()) { return llsd_shallow(value, filter); }
} // namespace llsd
// Specialization for generating a hash value from an LLSD block. // Specialization for generating a hash value from an LLSD block.
template <> template <>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment