pull/1616/head
Gabi Melman 5 years ago committed by GitHub
parent c62ba5f48d
commit 19f2804661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -92,7 +92,7 @@ struct formatter<spdlog::details::dump_info<T>>
auto parse(ParseContext &ctx) -> decltype(ctx.begin())
{
auto it = ctx.begin();
while (*it && *it != '}')
while (it != ctx.end() && *it != '}')
{
switch (*it)
{

Loading…
Cancel
Save