Initialize variable

master
Marc Gilleron 2022-05-18 20:15:23 +01:00
parent 008c38bb6b
commit df25723b20
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ std::string_view get_name(const std::string_view text, unsigned int &pos) {
bool get_number_token(const std::string_view text, unsigned int &pos, Token &out_token, bool negative) {
// Integer part
int64_t n = 0;
char c;
char c = 0;
while (pos < text.size()) {
c = text[pos];
if (!is_digit(c)) {