| author | |
| committer | |
| log | 79ec5a02875bb4af0dbcc186ffc03e693938db9a |
| tree | 7f79d2bda7cd53725213e01ca6b167a71f56f412 |
| parent | b61f1a9f7d06a352239a95cf42f2116f5bd44f4a |
See #2581 files changed, 1 insertions(+), 1 deletions(-)
src/tokenizer.cpp+1-1| ... | @@ -293,7 +293,7 @@ static void end_float_token(Tokenize *t) { | ... | @@ -293,7 +293,7 @@ static void end_float_token(Tokenize *t) { |
| 293 | t->cur_tok->data.num_lit.overflow = true; | 293 | t->cur_tok->data.num_lit.overflow = true; |
| 294 | return; | 294 | return; |
| 295 | } | 295 | } |
| 296 | assert(str_end == buf_ptr(t->buf) + t->cur_tok->end_pos); | 296 | assert(str_end <= buf_ptr(t->buf) + t->cur_tok->end_pos); |
| 297 | return; | 297 | return; |
| 298 | } | 298 | } |
| 299 | 299 |