0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 08:42:34 +01:00

ircd:Ⓜ️🆔 Fix event::version gauge.

This commit is contained in:
Jason Volk 2019-07-10 02:53:21 -07:00
parent c39aad4d3f
commit 735d1980ff

View file

@ -722,9 +722,8 @@ const
parser.event_id_v3 >> eoi parser.event_id_v3 >> eoi
}; };
const auto &local(this->local()); auto *start(std::begin(*this));
auto *start(std::begin(local)); auto *const stop(std::end(*this));
auto *const stop(std::end(local));
return return
qi::parse(start, stop, is_v4)? "4": qi::parse(start, stop, is_v4)? "4":