diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-12-03 11:58:38 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-12-03 11:58:38 -0500 |
commit | 1b8b6830b71731dda18b9241ce6a50ba63552960 (patch) | |
tree | 9ac17a0b3fd98e3a7acd2ffa4938bcaed690815d | |
parent | 91dd8b2371d40d0e64898b041a71601a301ab8eb (diff) |
Reconcile llsdutil_tut.cpp with Kent's LLSD API change
-rw-r--r-- | indra/test/llsdutil_tut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/test/llsdutil_tut.cpp b/indra/test/llsdutil_tut.cpp index d125bb0005..aebb1f9770 100644 --- a/indra/test/llsdutil_tut.cpp +++ b/indra/test/llsdutil_tut.cpp @@ -207,7 +207,7 @@ namespace tut map.insert("Date", LLSD::Date()); map.insert("URI", LLSD::URI()); map.insert("Binary", LLSD::Binary()); - map.insert("Map", LLSD().insert("foo", LLSD())); + map.insert("Map", LLSD().with("foo", LLSD())); // Only an empty array can be constructed on the fly LLSD array; array.append(LLSD()); |