[libcxx-commits] [PATCH] D142184: [libcxx] Add new line after assert message
Vitaly Buka via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed May 24 17:21:49 PDT 2023
vitalybuka updated this revision to Diff 525379.
vitalybuka added a comment.
rebase
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142184/new/
https://reviews.llvm.org/D142184
Files:
libcxx/include/__assert
Index: libcxx/include/__assert
===================================================================
--- libcxx/include/__assert
+++ libcxx/include/__assert
@@ -37,7 +37,7 @@
(__builtin_expect(static_cast<bool>(expression), 1) \
? (void)0 \
: _LIBCPP_VERBOSE_ABORT( \
- "%s:%d: assertion %s failed: %s", __builtin_FILE(), __builtin_LINE(), #expression, message))
+ "%s:%d: assertion %s failed: %s\n", __builtin_FILE(), __builtin_LINE(), #expression, message))
#elif !defined(_LIBCPP_ASSERTIONS_DISABLE_ASSUME) && __has_builtin(__builtin_assume)
# define _LIBCPP_ASSERT(expression, message) \
(_LIBCPP_DIAGNOSTIC_PUSH _LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wassume") \
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142184.525379.patch
Type: text/x-patch
Size: 1089 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230525/b895be83/attachment.bin>
More information about the libcxx-commits
mailing list