diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2021-06-11 17:06:50 -0400 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2021-06-24 02:07:40 +0300 |
commit | a9b82b9d89aa3d0460d142fc520bc6a8ba79574e (patch) | |
tree | adf7a833329c956a3c643cc4dfba9fe7ce62d3e9 /indra/llcommon/lleventcoro.cpp | |
parent | 089743ac0d12132dc878b4740415223aae81fb4f (diff) |
SL-15393: Use non-overloaded name for function returning LLSD&.
Diffstat (limited to 'indra/llcommon/lleventcoro.cpp')
-rw-r--r-- | indra/llcommon/lleventcoro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lleventcoro.cpp b/indra/llcommon/lleventcoro.cpp index 995356dc52..067b5e6fbc 100644 --- a/indra/llcommon/lleventcoro.cpp +++ b/indra/llcommon/lleventcoro.cpp @@ -101,7 +101,7 @@ void storeToLLSDPath(LLSD& dest, const LLSD& path, const LLSD& value) } // Drill down to where we should store 'value'. - llsd::drill(dest, path) = value; + llsd::drill_ref(dest, path) = value; } } // anonymous |