Skip to content

Commit 34a91d5

Browse files
committed
Format
1 parent 8b04b7e commit 34a91d5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

libcxxabi/src/abort_message.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
extern "C" _LIBCXXABI_HIDDEN _LIBCXXABI_NORETURN void
1515
abort_message(const char *format, ...) __attribute__((format(printf, 1, 2)));
1616

17-
#define _LIBCXXABI_ASSERT(expr, msg) \
18-
do { \
19-
if (!(expr)) { \
20-
char const* __msg = (msg); \
21-
::abort_message("%s:%d: %s", __FILE__, __LINE__, __msg); \
22-
} \
23-
} while (false)
17+
#define _LIBCXXABI_ASSERT(expr, msg) \
18+
do { \
19+
if (!(expr)) { \
20+
char const* __msg = (msg); \
21+
::abort_message("%s:%d: %s", __FILE__, __LINE__, __msg); \
22+
} \
23+
} while (false)
2424

2525
#endif

0 commit comments

Comments
 (0)