mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-25 06:59:11 +08:00
Fix #1611
This commit is contained in:
parent
c62ba5f48d
commit
19f2804661
@ -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…
Reference in New Issue
Block a user