[clang] [lldb] [llvm] [mlir] [NFC][Support] Add llvm::uninitialized_copy (PR #138174)
Sergei Barannikov via cfe-commits
cfe-commits at lists.llvm.org
Fri May 2 09:26:27 PDT 2025
================
@@ -2038,6 +2038,11 @@ template <typename R1, typename R2> auto mismatch(R1 &&Range1, R2 &&Range2) {
adl_end(Range2));
}
+template <typename R1, typename IterTy>
+auto uninitialized_copy(R1 &&Src, IterTy Dst) {
----------------
s-barannikov wrote:
```suggestion
template <typename R, typename IterTy>
auto uninitialized_copy(R &&Src, IterTy Dst) {
```
https://github.com/llvm/llvm-project/pull/138174
More information about the cfe-commits
mailing list