change popDouble return type to double

This commit is contained in:
Joel Dice 2009-08-05 15:00:27 -06:00
parent 6d27274aea
commit 0c36b7b3b6

View File

@ -167,7 +167,7 @@ popLong(Thread* t)
return (b << 32) | a;
}
inline float
inline double
popDouble(Thread* t)
{
return bitsToDouble(popLong(t));