spyffe added a comment. I only have a stylistic nit to add to Aleksei's comments.
================ Comment at: lib/AST/ASTImporter.cpp:6492 + UnresolvedSet<8> ToDecls; + for (UnresolvedLookupExpr::decls_iterator S = E->decls_begin(), + F = E->decls_end(); ---------------- a.sidorin wrote: > `auto` will look nice here. Alternatively, ``` for (Decl *D : E->decls()) ``` https://reviews.llvm.org/D27033 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits