mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 14:41:42 +03:00
Add const qualifier in assert_cmp()
This commit is contained in:
parent
ba0e35411c
commit
bc05ecebf6
1 changed files with 2 additions and 2 deletions
|
|
@ -1,8 +1,8 @@
|
|||
#define ASSERT_BUFSIZE 256
|
||||
|
||||
#define assert_cmp(t, a, b, cmp, neg_cmp, pri, ...) do { \
|
||||
t a_ = (a); \
|
||||
t b_ = (b); \
|
||||
const t a_ = (a); \
|
||||
const t b_ = (b); \
|
||||
if (!(a_ cmp b_)) { \
|
||||
char prefix[ASSERT_BUFSIZE]; \
|
||||
char message[ASSERT_BUFSIZE]; \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue