mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-16 09:47:56 +00:00
Compare commits
2 Commits
c62ba5f48d
...
8236ee3ff6
Author | SHA1 | Date | |
---|---|---|---|
|
8236ee3ff6 | ||
|
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)
|
||||
{
|
||||
|
@ -5,6 +5,6 @@
|
||||
|
||||
#define SPDLOG_VER_MAJOR 1
|
||||
#define SPDLOG_VER_MINOR 6
|
||||
#define SPDLOG_VER_PATCH 1
|
||||
#define SPDLOG_VER_PATCH 2
|
||||
|
||||
#define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)
|
||||
|
Loading…
Reference in New Issue
Block a user