Fix a bug from when this was a pointer instead of vector.

llvm-svn: 50639
This commit is contained in:
Chris Lattner 2008-05-05 07:03:40 +00:00
parent 3565c8e343
commit 7f5b4fcafa
1 changed files with 1 additions and 2 deletions

View File

@ -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