From 28a309e387a0a69b0c055c1565aa147fc695f906 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 5 May 2008 07:03:40 +0000 Subject: [PATCH] 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 --- include/clang/AST/Expr.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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