#3222 Make sure variables are initialized

in case anybody adds more constructors and forgets to set init.
master
Andrey Kleshchev 2024-12-10 15:20:27 +02:00 committed by Andrey Kleshchev
parent c162d8a060
commit 23e9c8cf30
1 changed files with 2 additions and 2 deletions

View File

@ -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