[PATCH] D23855: Make exception-throwing from a noexcept build `abort()`.

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 24 23:39:59 PDT 2016


mclow.lists added inline comments.

================
Comment at: src/thread.cpp:59
@@ -58,1 +58,3 @@
         throw system_error(error_code(ec, system_category()), "thread::join failed");
+#else
+    if (ec)
----------------
Need to fix these, too.


https://reviews.llvm.org/D23855





More information about the cfe-commits mailing list