mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-27 23:08:47 +00:00
Fix all uninitialized variable warnings (C26495)
This commit is contained in:
parent
525e6b2194
commit
78bfd25964
111 changed files with 638 additions and 651 deletions
|
@ -41,13 +41,14 @@ public:
|
|||
// Returns a human-readable error description when the given expression is invalid.
|
||||
std::optional<std::string> SetExpression(std::string expr);
|
||||
|
||||
ControlState range;
|
||||
ControlState range = 1;
|
||||
|
||||
protected:
|
||||
ControlReference();
|
||||
std::string m_expression;
|
||||
std::unique_ptr<ciface::ExpressionParser::Expression> m_parsed_expression;
|
||||
ciface::ExpressionParser::ParseStatus m_parse_status;
|
||||
ciface::ExpressionParser::ParseStatus m_parse_status =
|
||||
ciface::ExpressionParser::ParseStatus::EmptyExpression;
|
||||
};
|
||||
|
||||
template <>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue