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
This commit is contained in:
Chris Lattner 2008-05-05 07:03:40 +00:00
Родитель 8ed3044a33
Коммит 28a309e387
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

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