Skip to content

Commit 2abb35b

Browse files
committed
Merge #1657: tests: remove unused uncounting_illegal_callback_fn
51907fa tests: remove unused uncounting_illegal_callback_fn (Jonas Nick) Pull request description: ACKs for top commit: real-or-random: utACK 51907fa Tree-SHA512: 6959671e31938be833eb17ee762aa6d0e7b6789c951058cd32e46bfd95ad96a65625a0b976541b4e6c7d648fdad8af66b8e5503b38fed6387216d281a1513eed
2 parents a7a5117 + 51907fa commit 2abb35b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/tests.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,6 @@ static void counting_callback_fn(const char* str, void* data) {
8787
(*p)++;
8888
}
8989

90-
static void uncounting_illegal_callback_fn(const char* str, void* data) {
91-
/* Dummy callback function that just counts (backwards). */
92-
int32_t *p;
93-
(void)str;
94-
p = data;
95-
CHECK(*p != INT32_MIN);
96-
(*p)--;
97-
}
98-
9990
static void run_xoshiro256pp_tests(void) {
10091
{
10192
size_t i;

0 commit comments

Comments
 (0)