This commit is contained in:
Michiharu Ariza 2018-12-04 23:18:28 -08:00
parent 0e81b153af
commit 755fefc921
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ struct DictOpSet : OpSet<Number>
break;
case FRAC_PART:
if (likely ((frac_count <= MAX_FRACT / 10)))
if (likely ((fract_part <= MAX_FRACT / 10)))
{
frac_part = (frac_part * 10) + d;
frac_count++;