Merge pull request #1252 from bsergean/v1.x

Fix windows compile error where std::max is overriden by a macro (#1251)
This commit is contained in:
Gabi Melman 2019-09-30 08:34:02 +03:00 committed by GitHub
commit 1e8299e893
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);