0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-14 00:34:18 +01:00

ircd::spirit: Match exception specification from original template.

This commit is contained in:
Jason Volk 2020-11-28 15:49:26 -08:00
parent 478a871326
commit 42808cb5a5

View file

@ -38,7 +38,7 @@ boost::spirit::qi::char_parser
class Skipper,
class Attribute>
[[gnu::hot]]
bool parse(Iterator &__restrict__ start, const Iterator &__restrict__ stop, Context &c, const Skipper &s, Attribute &a) const noexcept
bool parse(Iterator &__restrict__ start, const Iterator &__restrict__ stop, Context &c, const Skipper &s, Attribute &a) const
{
qi::skip_over(start, stop, s);
if(likely(start != stop))