commented out the annoying assert when max round was exceeded.

This commit is contained in:
pinkerton 1998-05-22 04:22:04 +00:00
Родитель fcc3270223
Коммит a476e5c2cd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -780,7 +780,7 @@ Boolean LTableHeader::RedistributeSpace(
int signedUnit = roundingError < 0 ? -1 : +1;
#ifdef DEBUG
int maxRound = (inToColumn - inFromColumn + 2) / 2;
Assert_(roundingError * signedUnit <= maxRound);
// Assert_(roundingError * signedUnit <= maxRound);
#endif
static int rovingIndex = 0;
const Int16 initialError = roundingError;