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 e7eadbd commit 7866c01Copy full SHA for 7866c01
clang/lib/AST/ExprConstant.cpp
@@ -12665,9 +12665,9 @@ namespace {
12665
class DataRecursiveIntBinOpEvaluator {
12666
struct EvalResult {
12667
APValue Val;
12668
- bool Failed;
+ bool Failed = false;
12669
12670
- EvalResult() : Failed(false) { }
+ EvalResult() = default;
12671
12672
void swap(EvalResult &RHS) {
12673
Val.swap(RHS.Val);
0 commit comments