================
Comment at: include/clang/AST/Decl.h:3173
@@ -3172,2 +3172,3 @@
   Stmt *Body;
+  SmallVector<ImplicitParamDecl *, 3> Params;
 
----------------
Decl nodes can't contain SmallVectors, because the constructors of Decl nodes 
are never executed (so the SmallVector storage would leak). Please use an 
ASTContext-allocated array.


http://llvm-reviews.chandlerc.com/D722

BRANCH
  captured-stmts-codegen

ARCANIST PROJECT
  clang
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to