forked from OSchip/llvm-project
Fix a bug from when this was a pointer instead of vector.
llvm-svn: 50639
This commit is contained in:
parent
3565c8e343
commit
7f5b4fcafa
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue