llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: AtariDreams (AtariDreams) <details> <summary>Changes</summary> We do not support GCC 4.8 anymore. --- Full diff: https://github.com/llvm/llvm-project/pull/84229.diff 1 Files Affected: - (modified) clang/include/clang/AST/Expr.h (+1-1) ``````````diff diff --git a/clang/include/clang/AST/Expr.h b/clang/include/clang/AST/Expr.h index f7857d63bdef08..446bec4081e869 100644 --- a/clang/include/clang/AST/Expr.h +++ b/clang/include/clang/AST/Expr.h @@ -5843,7 +5843,7 @@ class GenericSelectionExpr final std::conditional_t<Const, const Stmt *const *, Stmt **>; using TSIPtrPtrTy = std::conditional_t<Const, const TypeSourceInfo *const *, TypeSourceInfo **>; - StmtPtrPtrTy E; // = nullptr; FIXME: Once support for gcc 4.8 is dropped. + StmtPtrPtrTy E = nullptr; TSIPtrPtrTy TSI; // Kept in sync with E. unsigned Offset = 0, SelectedOffset = 0; AssociationIteratorTy(StmtPtrPtrTy E, TSIPtrPtrTy TSI, unsigned Offset, `````````` </details> https://github.com/llvm/llvm-project/pull/84229 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits