From b6fdcdd5dd50618f110b01a9c508acfbd41641cc Mon Sep 17 00:00:00 2001 From: theoreticalbts Date: Thu, 5 May 2016 13:02:54 -0400 Subject: [PATCH] json_relaxed.hpp: Fix bug in triple quote string parsing --- include/fc/io/json_relaxed.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fc/io/json_relaxed.hpp b/include/fc/io/json_relaxed.hpp index a3793a4..e4876f2 100644 --- a/include/fc/io/json_relaxed.hpp +++ b/include/fc/io/json_relaxed.hpp @@ -123,6 +123,7 @@ namespace fc { namespace json_relaxed char c2 = in.peek(); if( c2 == q ) { + in.get(); char c3 = in.peek(); if( c3 == q ) {