Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmc/utl/assert.h
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ CMC_UNUSED static uintmax_t cmc_assert_failed = 0;
\
} while (0)

#define cmc_assert_equals__Bool(expected, actual) \
#define cmc_assert_equals_bool(expected, actual) \
do \
{ \
cmc_assert_total++; \
Expand Down Expand Up @@ -962,7 +962,7 @@ CMC_UNUSED static uintmax_t cmc_assert_failed = 0;
\
} while (0)

#define cmc_assert_not_equals__Bool(expected, actual) \
#define cmc_assert_not_equals_bool(expected, actual) \
do \
{ \
cmc_assert_total++; \
Expand Down