Unverified Commit 19f28046 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Fix #1611

parent c62ba5f4
...@@ -92,7 +92,7 @@ struct formatter<spdlog::details::dump_info<T>> ...@@ -92,7 +92,7 @@ struct formatter<spdlog::details::dump_info<T>>
auto parse(ParseContext &ctx) -> decltype(ctx.begin()) auto parse(ParseContext &ctx) -> decltype(ctx.begin())
{ {
auto it = ctx.begin(); auto it = ctx.begin();
while (*it && *it != '}') while (it != ctx.end() && *it != '}')
{ {
switch (*it) switch (*it)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment