This commit is contained in:
Alexei Podtelezhnikov 2017-02-01 22:36:16 -05:00
parent 2ca5b07d4f
commit a3754d6626
1 changed files with 2 additions and 1 deletions

View File

@ -341,7 +341,8 @@ typedef ptrdiff_t FT_PtrDist;
/* Compute `dividend / divisor' and return both its quotient and */
/* remainder, cast to a specific type. This macro also ensures that */
/* the remainder is always positive. */
/* the remainder is always positive. We use the remainder to keep */
/* track of accumulating errors and compensate for them. */
#define FT_DIV_MOD( type, dividend, divisor, quotient, remainder ) \
FT_BEGIN_STMNT \
(quotient) = (type)( (dividend) / (divisor) ); \