diff options
author | Monroe Linden <monroe@lindenlab.com> | 2010-08-26 11:23:46 -0700 |
---|---|---|
committer | Monroe Linden <monroe@lindenlab.com> | 2010-08-26 11:23:46 -0700 |
commit | 904e43e664583b6e567a32becf182957b2006dff (patch) | |
tree | 48e0d017bf30ebfe73180e9c3cad757584fd6800 | |
parent | 2f0d1f98834a37063c1ebde2c518bf20854381e2 (diff) |
Fix another mac build error.
-rw-r--r-- | indra/llui/llsdparam.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llsdparam.h b/indra/llui/llsdparam.h index 83c958d67d..c42358178a 100644 --- a/indra/llui/llsdparam.h +++ b/indra/llui/llsdparam.h @@ -93,7 +93,8 @@ class LLSDParamAdapter : public T LLSDParamAdapter() {} LLSDParamAdapter(const LLSD& sd) { - LLParamSDParser::instance().readSD(sd, *this); + LLParamSDParser parser; + parser.readSD(sd, *this); } LLSDParamAdapter(const T& val) |