[cfe-commits] r50639 - /cfe/trunk/include/clang/AST/Expr.h
Chris Lattner
sabre at nondot.org
Mon May 5 00:03:40 PDT 2008
Author: lattner
Date: Mon May 5 02:03:40 2008
New Revision: 50639
URL: http://llvm.org/viewvc/llvm-project?rev=50639&view=rev
Log:
Fix a bug from when this was a pointer instead of vector.
Modified:
cfe/trunk/include/clang/AST/Expr.h
Modified: cfe/trunk/include/clang/AST/Expr.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Expr.h?rev=50639&r1=50638&r2=50639&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Expr.h (original)
+++ cfe/trunk/include/clang/AST/Expr.h Mon May 5 02:03:40 2008
@@ -1335,8 +1335,7 @@
private:
// Used by serializer.
- InitListExpr() : Expr(InitListExprClass, QualType()),
- InitExprs(NULL) {}
+ InitListExpr() : Expr(InitListExprClass, QualType()) {}
};
/// ObjCStringLiteral, used for Objective-C string literals
More information about the cfe-commits
mailing list