mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-26 07:29:03 +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 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)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user