Merge branch 'v1.x' of https://github.com/gabime/spdlog into v1.x

This commit is contained in:
gabime 2018-11-12 10:44:43 +02:00
commit 34c60e5486

View File

@ -1115,7 +1115,7 @@ private:
auto digit = static_cast<size_t>(*it - '0');
width = width * 10 + digit;
}
return details::padding_info{std::min(width, max_width), side};
return details::padding_info{std::min<size_t>(width, max_width), side};
}
void compile_pattern_(const std::string &pattern)