use size_t to better represent thread id across platforms

This commit is contained in:
gabime
2015-04-07 21:35:41 +03:00
parent 7105fdadf9
commit 0684b4f378
4 changed files with 9 additions and 8 deletions

View File

@@ -92,7 +92,7 @@ struct log_msg
std::string logger_name;
level::level_enum level;
log_clock::time_point time;
uint64_t thread_id;
thread_id thread_id;
fmt::MemoryWriter raw;
fmt::MemoryWriter formatted;
};