[libcxx-commits] [PATCH] D142184: [libcxx] Add new line after assert message
Vitaly Buka via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jan 19 23:36:03 PST 2023
vitalybuka updated this revision to Diff 490732.
vitalybuka added a comment.
putc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142184/new/
https://reviews.llvm.org/D142184
Files:
libcxx/src/verbose_abort.cpp
Index: libcxx/src/verbose_abort.cpp
===================================================================
--- libcxx/src/verbose_abort.cpp
+++ libcxx/src/verbose_abort.cpp
@@ -36,6 +36,7 @@
va_list list;
va_start(list, format);
std::vfprintf(stderr, format, list);
+ std::fputc('\n', stderr);
va_end(list);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142184.490732.patch
Type: text/x-patch
Size: 335 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230120/68fd3764/attachment.bin>
More information about the libcxx-commits
mailing list