File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
#include " src/assert/__assert_fail.h"
10
10
11
- // There is no header guard here since assert is intended to be able to be
12
- // able to be included multiple times with NDEBUG defined differently, causing
13
- // different behavior.
11
+ // There is no header guard here since assert is intended to capable of being
12
+ // included multiple times with NDEBUG defined differently, causing different
13
+ // behavior.
14
14
15
15
#undef assert
16
16
17
17
#ifdef NDEBUG
18
18
#define assert (e ) (void )0
19
19
#else
20
20
#define assert (e ) \
21
- ((e) ? (void )0 : \
22
- __llvm_libc::__assert_fail (#e, __FILE__, __LINE__, __PRETTY_FUNCTION__))
21
+ ((e) ? (void )0 \
22
+ : __llvm_libc::__assert_fail(#e, __FILE__, __LINE__, \
23
+ __PRETTY_FUNCTION__))
23
24
#endif
You can’t perform that action at this time.
0 commit comments