mirror of
https://github.com/gabime/spdlog.git
synced 2025-01-12 17:00:25 +08:00
Fixed #902
This commit is contained in:
parent
f1e79bde2e
commit
526f21ae7f
@ -1114,7 +1114,7 @@ private:
|
|||||||
auto digit = static_cast<size_t>(*it - '0');
|
auto digit = static_cast<size_t>(*it - '0');
|
||||||
width = width * 10 + digit;
|
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)
|
void compile_pattern_(const std::string &pattern)
|
||||||
|
Loading…
Reference in New Issue
Block a user