Revert "Fix interpolation/STRFMT overflow issues"

This reverts commit 992be3fd9b.
This commit is contained in:
Rangi
2021-04-16 22:19:37 -04:00
parent 992be3fd9b
commit 503c3b5364
9 changed files with 14 additions and 103 deletions

View File

@@ -28,9 +28,9 @@ struct FormatSpec {
bool prefix;
bool alignLeft;
bool padZero;
size_t width;
uint8_t width;
bool hasFrac;
size_t fracWidth;
uint8_t fracWidth;
int type;
bool valid;
};