[libcxx-commits] [PATCH] D64818: [libc++] Implement missing filesystem::path constructors with locale

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Oct 27 10:41:22 PDT 2023


Mordante added a comment.

No real issue from my side. I'll leave the approval to Tom.



================
Comment at: libcxx/include/__filesystem/path.h:552
+  _LIBCPP_HIDE_FROM_ABI path(const _Source& __src, const locale& __loc, format = format::auto_format) {
+    _SourceCVT<std::wstring>::__append_source(__pn_, filesystem::__widen_char_source(__src, __loc));
+  }
----------------



================
Comment at: libcxx/include/__filesystem/path.h:557
+  _LIBCPP_HIDE_FROM_ABI path(_InputIt __first, _InputIt __last, const locale& __loc, format = format::auto_format) {
+    _SourceCVT<std::wstring>::__append_source(__pn_, filesystem::__widen_char_source(__first, __last, __loc));
+  }
----------------



Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D64818



More information about the libcxx-commits mailing list