�Add a comment

This commit is contained in:
Sylvain Pion 2004-04-08 21:15:20 +00:00
parent 1cf0e677e5
commit 3cf2eba2df
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,8 @@ int main()
{
double d = std::numeric_limits<double>::denorm_min();
double e = std::numeric_limits<double>::min();
// Note : denorm_min == min is actually not necessarily a bug.
// So a better test should be found.
if (d == 0 || d == e)
return 1;
return 0;