[libcxx-commits] [PATCH] D153285: [NFC][libc++] Addresses LWG3905.

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sat Jun 24 04:35:51 PDT 2023


Mordante updated this revision to Diff 534195.
Mordante marked an inline comment as done.
Mordante added a comment.

CI fixes.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D153285

Files:
  libcxx/docs/Status/Cxx2cIssues.csv
  libcxx/test/std/depr/depr.c.headers/fenv_h.compile.pass.cpp


Index: libcxx/test/std/depr/depr.c.headers/fenv_h.compile.pass.cpp
===================================================================
--- libcxx/test/std/depr/depr.c.headers/fenv_h.compile.pass.cpp
+++ libcxx/test/std/depr/depr.c.headers/fenv_h.compile.pass.cpp
@@ -57,7 +57,7 @@
 #endif
 
 fenv_t fenv = {};
-fexcept_t fex = 0;
+fexcept_t fex = fexcept_t();
 ASSERT_SAME_TYPE(int, decltype(::feclearexcept(0)));
 ASSERT_SAME_TYPE(int, decltype(::fegetexceptflag(&fex, 0)));
 ASSERT_SAME_TYPE(int, decltype(::feraiseexcept(0)));
Index: libcxx/docs/Status/Cxx2cIssues.csv
===================================================================
--- libcxx/docs/Status/Cxx2cIssues.csv
+++ libcxx/docs/Status/Cxx2cIssues.csv
@@ -7,7 +7,7 @@
 "`3894 <https://wg21.link/LWG3894>`__","``generator::promise_type::yield_value(ranges::elements_of<Rng, Alloc>)`` should not be ``noexcept``","Varna June 2023","","",""
 "`3903 <https://wg21.link/LWG3903>`__","span destructor is redundantly noexcept","Varna June 2023","","",""
 "`3904 <https://wg21.link/LWG3904>`__","``lazy_split_view::outer-iterator``'s const-converting constructor isn't setting ``trailing_empty_``","Varna June 2023","","","|ranges|"
-"`3905 <https://wg21.link/LWG3905>`__","Type of ``std::fexcept_t``","Varna June 2023","","",""
+"`3905 <https://wg21.link/LWG3905>`__","Type of ``std::fexcept_t``","Varna June 2023","|Complete|","Clang 3.4",""
 "`3912 <https://wg21.link/LWG3912>`__","``enumerate_view::iterator::operator-`` should be ``noexcept``","Varna June 2023","","","|ranges|"
 "`3914 <https://wg21.link/LWG3914>`__","Inconsistent template-head of ``ranges::enumerate_view``","Varna June 2023","","","|ranges|"
 "`3915 <https://wg21.link/LWG3915>`__","Redundant paragraph about expression variations","Varna June 2023","","","|ranges|"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153285.534195.patch
Type: text/x-patch
Size: 1801 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230624/ce665c7f/attachment-0001.bin>


More information about the libcxx-commits mailing list