Better language determination.

This commit is contained in:
Gav Wood 2014-06-22 11:41:29 +01:00
parent 2c0c091616
commit eaf79f924c

View File

@ -118,6 +118,6 @@ void eth::parseTreeLLL(string const& _s, sp::utree& o_out)
if (!incomment)
s.push_back(i);
}
qi::phrase_parse(s.cbegin(), s.cend(), element, space, o_out);
qi::phrase_parse(s.cbegin(), s.cend(), element, space, qi::skip_flag::dont_postskip, o_out);
}