diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-12-10 15:20:27 +0200 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-12-10 16:42:19 +0200 |
commit | 23e9c8cf309198b62dbfdb48fb9d56af51079ffe (patch) | |
tree | b4b7fa6e1a4b51aa47cb0b65b099b5f5f6328585 /indra/llui | |
parent | c162d8a060e9b48a7945eb0b1bdafbff959b7faf (diff) |
#3222 Make sure variables are initialized
in case anybody adds more constructors and forgets to set init.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/lluistring.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/lluistring.h b/indra/llui/lluistring.h index 2512634004..950d4e72c6 100644 --- a/indra/llui/lluistring.h +++ b/indra/llui/lluistring.h @@ -110,8 +110,8 @@ private: LLStringUtil::format_map_t* mArgs; // controls lazy evaluation - mutable bool mNeedsResult; - mutable bool mNeedsWResult; + mutable bool mNeedsResult { true }; + mutable bool mNeedsWResult { true }; }; #endif // LL_LLUISTRING_H |