[libcxx-commits] [PATCH] D89677: [libcxx] [test] Don't require path::operator(string_type&&) to be noexcept

Martin Storsjö via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Oct 19 14:07:43 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG41c507088894: [libcxx] [test] Don't require fs::path::operator(string_type&&) to be noexcept (authored by mstorsjo).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D89677

Files:
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp


Index: libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp
===================================================================
--- libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp
+++ libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp
@@ -223,7 +223,7 @@
   assert(p == Expect);
   {
     // Signature test
-    ASSERT_NOEXCEPT(p = std::move(ss));
+    LIBCPP_ONLY(ASSERT_NOEXCEPT(p = std::move(ss)));
   }
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D89677.299156.patch
Type: text/x-patch
Size: 536 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20201019/b630e47d/attachment.bin>


More information about the libcxx-commits mailing list