[libcxx-commits] [PATCH] D111892: Raise compile error when using unimplemented functions
Muiez Ahmed via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Oct 19 11:28:20 PDT 2021
muiez updated this revision to Diff 380744.
muiez retitled this revision from "Raise assertion error when using unimplemented functions" to "Raise compile error when using unimplemented functions".
muiez edited the summary of this revision.
muiez added a comment.
Commented out unimplemented functions.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111892/new/
https://reviews.llvm.org/D111892
Files:
libcxx/include/filesystem
Index: libcxx/include/filesystem
===================================================================
--- libcxx/include/filesystem
+++ libcxx/include/filesystem
@@ -966,6 +966,7 @@
_PathCVT<_ItVal>::__append_range(__pn_, __first, __last);
}
+/*
#if !defined(_LIBCPP_HAS_NO_LOCALIZATION)
// TODO Implement locale conversions.
template <class _Source, class = _EnableIfPathable<_Source, void> >
@@ -974,6 +975,7 @@
path(_InputIt __first, _InputIt _last, const locale& __loc,
format = format::auto_format);
#endif
+*/
_LIBCPP_INLINE_VISIBILITY
~path() = default;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111892.380744.patch
Type: text/x-patch
Size: 597 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20211019/f087207d/attachment.bin>
More information about the libcxx-commits
mailing list