mirror of
https://github.com/gabime/spdlog.git
synced 2025-10-02 11:29:01 +08:00
Fix osx build
This commit is contained in:
@@ -487,7 +487,6 @@ public:
|
||||
|
||||
auto ns = fmt_helper::time_fraction<std::chrono::nanoseconds>(msg.time);
|
||||
fmt_helper::pad9(static_cast<size_t>(ns.count()), dest);
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
@@ -653,7 +652,7 @@ public:
|
||||
|
||||
void format(const details::log_msg &msg, const std::tm &, fmt::memory_buffer &dest) override
|
||||
{
|
||||
const size_t field_size = fmt::internal::count_digits(msg.thread_id);
|
||||
const auto field_size = fmt::internal::count_digits(static_cast<uint64_t>(msg.thread_id));
|
||||
scoped_pad p(field_size, padinfo_, dest);
|
||||
fmt_helper::append_int(msg.thread_id, dest);
|
||||
}
|
||||
|
Reference in New Issue
Block a user