Squashed bug causing incorrect digits. Now fully working

I totally brainfarted and put this->preDigits.size() in the for
loop comparison clause, which gets re-evaluated every loop.
So it was leaving digits on the stack that should have been
printed, causing errors both immediately and down the line.
This commit is contained in:
A.M. Rowsell 2023-06-09 12:15:53 -04:00
commit 218d5b7da8
Signed by: amr
GPG key ID: 0B6E2D8375CF79A9
5 changed files with 70 additions and 27 deletions

View file

@ -1,7 +1,7 @@
CC=gcc
CXX=g++
RM=rm -f
CPPFLAGS=-ggdb -Og -Wall
CPPFLAGS=-ggdb -O0 -Wall
LDFLAGS=-g
LDLIBS=-lm