We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b6ce12 commit 9ae2bc6Copy full SHA for 9ae2bc6
clang/lib/CIR/CodeGen/CIRGenClass.cpp
@@ -134,9 +134,9 @@ struct DynamicThisUseChecker
134
: ConstEvaluatedExprVisitor<DynamicThisUseChecker> {
135
using super = ConstEvaluatedExprVisitor<DynamicThisUseChecker>;
136
137
- bool usesThis;
+ bool usesThis = false;
138
139
- DynamicThisUseChecker(const ASTContext &c) : super(c), usesThis(false) {}
+ DynamicThisUseChecker(const ASTContext &c) : super(c) {}
140
141
// Black-list all explicit and implicit references to 'this'.
142
//
0 commit comments