whitespace fixes

This commit is contained in:
Axel Kohlmeyer
2022-12-21 21:34:56 -05:00
parent cf0fb7f5df
commit e2f9d59484
8 changed files with 33 additions and 33 deletions

View File

@ -66,7 +66,7 @@ private:
string Parser::trim(const string& expression) {
// Remove leading and trailing spaces.
int start, end;
for (start = 0; start < (int) expression.size() && isspace(expression[start]); start++)
;