From: Chris Lattner Date: Mon, 5 May 2008 07:03:40 +0000 (+0000) Subject: Fix a bug from when this was a pointer instead of vector. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28a309e387a0a69b0c055c1565aa147fc695f906;p=clang Fix a bug from when this was a pointer instead of vector. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50639 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 824fd4d6c8..85e6eeb713 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -1335,8 +1335,7 @@ public: private: // Used by serializer. - InitListExpr() : Expr(InitListExprClass, QualType()), - InitExprs(NULL) {} + InitListExpr() : Expr(InitListExprClass, QualType()) {} }; /// ObjCStringLiteral, used for Objective-C string literals