================
@@ -10053,7 +10053,7 @@ void SemaCodeCompletion::CodeCompleteObjCMethodDecl(
         IFace = Category->getClassInterface();
 
     if (IFace)
-      llvm::append_range(Containers, IFace->visible_categories());
+      llvm::copy(IFace->visible_categories(), std::back_inserter(Containers));
----------------
aengelke wrote:

Yes + yes, implemented.

https://github.com/llvm/llvm-project/pull/191030
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to