Commit 5381061d authored by Benjamin Sergeant's avatar Benjamin Sergeant

Fix windows compile error where std::max is overriden by a macro (#1251)

parent 274558c4
......@@ -878,7 +878,7 @@ public:
void format(const details::log_msg &msg, const std::tm &, memory_buf_t &dest) override
{
auto delta = std::max(msg.time - last_message_time_, log_clock::duration::zero());
auto delta = (std::max)(msg.time - last_message_time_, log_clock::duration::zero());
auto delta_units = std::chrono::duration_cast<DurationUnits>(delta);
last_message_time_ = msg.time;
ScopedPadder p(6, padinfo_, dest);
......
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