a_sidorin added a comment.

Hi Balázs,
The approach is OK but I have some minor comments inline.



================
Comment at: lib/AST/ASTImporter.cpp:2840
 
-  return Index;
+  assert(false && "Field was not found in its parent context.");
+
----------------
`llvm_unreachable`?


================
Comment at: unittests/AST/ASTImporterTest.cpp:2642
+    unsigned ToIndex = 0u;
+    for (auto *F : ToLambda->fields()) {
+      if (F == ToField)
----------------
I think we can make `getFieldIndex()` a static method of ASTImporter and remove 
this loop.


Repository:
  rC Clang

https://reviews.llvm.org/D49796



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to