diff options
author | Chris Lattner <sabre@nondot.org> | 2008-05-05 07:03:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-05-05 07:03:40 +0000 |
commit | 28a309e387a0a69b0c055c1565aa147fc695f906 (patch) | |
tree | e66cef607b92dda71d7ddda38865c9d77dd354b8 | |
parent | 8ed3044a33679cbfa0617d465a50ec557d671ed7 (diff) |
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
-rw-r--r-- | include/clang/AST/Expr.h | 3 |
1 files changed, 1 insertions, 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 |