json_relaxed.hpp: Fix bug in triple quote string parsing

This commit is contained in:
theoreticalbts 2016-05-05 13:02:54 -04:00
parent 56e36bed8f
commit b6fdcdd5dd

View file

@ -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 )
{