Fix unused variable

This commit is contained in:
Marc Gilleron 2022-04-07 21:14:07 +01:00
parent 6663fdad92
commit 1f032d882a

View File

@ -69,8 +69,6 @@ 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) {
const unsigned int begin_pos = pos;
// Integer part
int64_t n = 0;
char c;