Skip to content

Commit 95bab4c

Browse files
committed
default initialize field
Signed-off-by: Justin Stitt <[email protected]>
1 parent 1f15671 commit 95bab4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/AST/Expr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3860,7 +3860,7 @@ class CStyleCastExpr final
38603860
class BinaryOperator : public Expr {
38613861
enum { LHS, RHS, END_EXPR };
38623862
Stmt *SubExprs[END_EXPR];
3863-
bool ExcludedOverflowPattern;
3863+
bool ExcludedOverflowPattern = false;
38643864

38653865
public:
38663866
typedef BinaryOperatorKind Opcode;

0 commit comments

Comments
 (0)