From 0c36b7b3b609fb3a01a19b44604c757e3ac73549 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 5 Aug 2009 15:00:27 -0600 Subject: [PATCH] change popDouble return type to double --- src/interpret.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpret.cpp b/src/interpret.cpp index 7a51fc997a..b1d533eb1a 100644 --- a/src/interpret.cpp +++ b/src/interpret.cpp @@ -167,7 +167,7 @@ popLong(Thread* t) return (b << 32) | a; } -inline float +inline double popDouble(Thread* t) { return bitsToDouble(popLong(t));