Commit 0d79e7c2 authored by Aaron Burghardt's avatar Aaron Burghardt

Removed duplicate m_marker updates in YYFILL macro.

parent e3e18d7b
...@@ -3191,7 +3191,7 @@ class basic_json ...@@ -3191,7 +3191,7 @@ class basic_json
// remember the begin of the token // remember the begin of the token
m_start = m_cursor; m_start = m_cursor;
#define YYFILL(n) { size_t offset_marker = m_marker - m_start; yyfill(n); m_marker = m_start + offset_marker; } #define YYFILL(n) { yyfill(n); }
/*!re2c /*!re2c
re2c:define:YYCTYPE = lexer_char_t; re2c:define:YYCTYPE = lexer_char_t;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment