mirror of
https://github.com/catchorg/Catch2.git
synced 2024-12-23 11:43:29 +01:00
parent
a2c8dce85c
commit
23c80bcc92
@ -188,9 +188,10 @@ namespace Floating {
|
|||||||
ret << ", ";
|
ret << ", ";
|
||||||
write(ret, step(m_target, static_cast<double>( INFINITY), m_ulps));
|
write(ret, step(m_target, static_cast<double>( INFINITY), m_ulps));
|
||||||
} else {
|
} else {
|
||||||
write(ret, step(static_cast<float>(m_target), -INFINITY, m_ulps));
|
// We have to cast INFINITY to float because of MinGW, see #1782
|
||||||
|
write(ret, step(static_cast<float>(m_target), static_cast<float>(-INFINITY), m_ulps));
|
||||||
ret << ", ";
|
ret << ", ";
|
||||||
write(ret, step(static_cast<float>(m_target), INFINITY, m_ulps));
|
write(ret, step(static_cast<float>(m_target), static_cast<float>( INFINITY), m_ulps));
|
||||||
}
|
}
|
||||||
ret << "])";
|
ret << "])";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user