diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-28 10:20:27 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-28 10:20:27 -0800 |
commit | 9cfc1f33b230f52f194d725a8accc44423f0ad19 (patch) | |
tree | 5057c318a06ee505af8ee59077042dff7d5b7297 /indra | |
parent | 9997587e390cc309e71cffb55f5cf6a9ad90da69 (diff) |
CID-323
Checker: UNINIT_CTOR
Function: LLUIString::LLUIString()
File: /indra/llui/lluistring.h
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llui/lluistring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lluistring.h b/indra/llui/lluistring.h index 7ec0fd603a..32cfc0d9cd 100644 --- a/indra/llui/lluistring.h +++ b/indra/llui/lluistring.h @@ -64,7 +64,7 @@ class LLUIString public: // These methods all perform appropriate argument substitution // and modify mOrig where appropriate - LLUIString() {} + LLUIString() : mNeedsResult(false), mNeedsWResult(false) {} LLUIString(const std::string& instring, const LLStringUtil::format_map_t& args); LLUIString(const std::string& instring) { assign(instring); } |