Deleted Added
full compact
47c47
< Context.getTranslationUnitDecl()->print(Out, Context, Policy);
---
> Context.getTranslationUnitDecl()->print(Out, Policy);
73,74c73,74
< D = Ctx.getTranslationUnitDecl()->decls_begin(Ctx),
< DEnd = Ctx.getTranslationUnitDecl()->decls_end(Ctx);
---
> D = Ctx.getTranslationUnitDecl()->decls_begin(),
> DEnd = Ctx.getTranslationUnitDecl()->decls_end();
117c117
< FD->print(llvm::errs(), *Context);
---
> FD->print(llvm::errs());
128c128
< MD->print(llvm::errs(), *Context);
---
> MD->print(llvm::errs());
343,346c343
< // FIXME: Should not use a NULL DeclContext!
< ASTContext *Context = 0;
< for (DeclContext::decl_iterator I = DC->decls_begin(*Context),
< E = DC->decls_end(*Context);
---
> for (DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end();