remove unnecessary type-casts
This commit is contained in:
parent
a91eb5a0d9
commit
e9d54e9867
@ -223,9 +223,9 @@ static int test_mp_get_set_i64(void)
|
||||
|
||||
DOR(mp_init(&a));
|
||||
|
||||
check_get_set_i64(&a, (int64_t)0);
|
||||
check_get_set_i64(&a, (int64_t)-1);
|
||||
check_get_set_i64(&a, (int64_t)1);
|
||||
check_get_set_i64(&a, 0);
|
||||
check_get_set_i64(&a, -1);
|
||||
check_get_set_i64(&a, 1);
|
||||
check_get_set_i64(&a, INT64_MIN);
|
||||
check_get_set_i64(&a, INT64_MAX);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user