Skip to content

Commit e3faae9

Browse files
authored
[Clang] [AST] Resolve FIXME: Assign E to nullptr (#84229)
We do not support GCC 4.8 anymore.
1 parent 7daa36a commit e3faae9

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
@@ -5843,7 +5843,7 @@ class GenericSelectionExpr final
58435843
std::conditional_t<Const, const Stmt *const *, Stmt **>;
58445844
using TSIPtrPtrTy = std::conditional_t<Const, const TypeSourceInfo *const *,
58455845
TypeSourceInfo **>;
5846-
StmtPtrPtrTy E; // = nullptr; FIXME: Once support for gcc 4.8 is dropped.
5846+
StmtPtrPtrTy E = nullptr;
58475847
TSIPtrPtrTy TSI; // Kept in sync with E.
58485848
unsigned Offset = 0, SelectedOffset = 0;
58495849
AssociationIteratorTy(StmtPtrPtrTy E, TSIPtrPtrTy TSI, unsigned Offset,

0 commit comments

Comments
 (0)