From 0d79e7c2a27378e149fc3e5747b3a8f22065dc20 Mon Sep 17 00:00:00 2001
From: Aaron Burghardt <aburgh@mac.com>
Date: Fri, 27 Feb 2015 20:38:05 -0500
Subject: [PATCH] Removed duplicate m_marker updates in YYFILL macro.

---
 src/json.hpp.re2c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/json.hpp.re2c b/src/json.hpp.re2c
index 777fdbbe..43122080 100644
--- a/src/json.hpp.re2c
+++ b/src/json.hpp.re2c
@@ -3191,7 +3191,7 @@ class basic_json
             // remember the begin of the token
             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:define:YYCTYPE  = lexer_char_t;