Skip to content

Commit

Permalink
Fix astyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed Nov 28, 2023
1 parent 7c17aa1 commit 48a3518
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tommath_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ MP_STATIC_ASSERT(correct_word_size, sizeof(mp_word) == (2u * sizeof(mp_digit)))
#endif
MP_STATIC_ASSERT(prec_geq_min_prec, MP_DEFAULT_DIGIT_COUNT >= MP_MIN_DIGIT_COUNT)
MP_STATIC_ASSERT(min_prec_geq_3, MP_MIN_DIGIT_COUNT >= 3)
MP_STATIC_ASSERT(min_prec_geq_uint64size, MP_MIN_DIGIT_COUNT >= ((((int)MP_SIZEOF_BITS(uint64_t) + MP_DIGIT_BIT) - 1) / MP_DIGIT_BIT))
MP_STATIC_ASSERT(min_prec_geq_uint64size,
MP_MIN_DIGIT_COUNT >= ((((int)MP_SIZEOF_BITS(uint64_t) + MP_DIGIT_BIT) - 1) / MP_DIGIT_BIT))

/* Maximum number of digits.
* - Must be small enough such that mp_bit_count does not overflow.
Expand Down

0 comments on commit 48a3518

Please sign in to comment.