mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 10:47:35 +02:00
Fix warnings
This commit is contained in:
@ -258,13 +258,15 @@ To safe_duration_cast(std::chrono::duration<FromRep, FromPeriod> from,
|
|||||||
// multiply with Factor::num without overflow or underflow
|
// multiply with Factor::num without overflow or underflow
|
||||||
if (Factor::num != 1) {
|
if (Factor::num != 1) {
|
||||||
constexpr auto max1 =
|
constexpr auto max1 =
|
||||||
std::numeric_limits<IntermediateRep>::max() / Factor::num;
|
std::numeric_limits<IntermediateRep>::max() /
|
||||||
|
static_cast<IntermediateRep>(Factor::num);
|
||||||
if (count > max1) {
|
if (count > max1) {
|
||||||
ec = 1;
|
ec = 1;
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
constexpr auto min1 =
|
constexpr auto min1 =
|
||||||
std::numeric_limits<IntermediateRep>::lowest() / Factor::num;
|
std::numeric_limits<IntermediateRep>::lowest() /
|
||||||
|
static_cast<IntermediateRep>(Factor::num);
|
||||||
if (count < min1) {
|
if (count < min1) {
|
||||||
ec = 1;
|
ec = 1;
|
||||||
return {};
|
return {};
|
||||||
|
Reference in New Issue
Block a user