[libc-commits] [PATCH] D77277: [libc] Fix round and memcpy to adhere to qualified calls.

Alex Brachet via Phabricator via libc-commits libc-commits at lists.llvm.org
Thu Apr 2 01:03:12 PDT 2020


abrachet accepted this revision.
abrachet added inline comments.


================
Comment at: libc/src/string/strcpy.cpp:18
+  return reinterpret_cast<char *>(
+      __llvm_libc::memcpy(dest, src, ::strlen(src) + 1));
 }
----------------
Should we wait for D77279 to use `__llvm_libc::strlen`?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D77277





More information about the libc-commits mailing list