[libcxx-commits] [PATCH] D135297: [libc++] Add test for bug that had been introduced in D98573 and fixed in D119633

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Oct 11 06:42:13 PDT 2022


ldionne marked 2 inline comments as done.
ldionne added inline comments.


================
Comment at: libcxx/test/std/strings/basic.string/string.modifiers/string_insert/iter_iter_iter.infinite_recursion.pass.cpp:94
+        static char_type* copy(char_type* dest, char_type const* src, std::size_t count) {
+            return move(dest, src, count);
+        }
----------------
philnik wrote:
> 
Changed to `char_traits::move`.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D135297/new/

https://reviews.llvm.org/D135297



More information about the libcxx-commits mailing list