Commit d3a7039e authored by Victor Zverovich's avatar Victor Zverovich

Implement 'll' specifier.

parent 5614295a
......@@ -916,7 +916,10 @@ void fmt::internal::PrintfFormatter<Char>::format(
ArgConverter<short>(arg, *s).visit(arg);
break;
case 'l':
ArgConverter<long>(arg, *s).visit(arg);
if (*s == 'l')
ArgConverter<long long>(arg, *++s).visit(arg);
else
ArgConverter<long>(arg, *s).visit(arg);
break;
case 'j':
ArgConverter<intmax_t>(arg, *s).visit(arg);
......
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