From b57540a87ad286aba66a1d331bd135efe009318b Mon Sep 17 00:00:00 2001 From: Brendan Eich Date: Sat, 2 Aug 2008 16:05:16 -0700 Subject: [PATCH] Avoid JSUint64 (NSPR style), use uint64 (SpiderMonkey style). --- js/src/jsnum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jsnum.h b/js/src/jsnum.h index e3e02fc5d12a..4748dc99f86b 100644 --- a/js/src/jsnum.h +++ b/js/src/jsnum.h @@ -69,7 +69,7 @@ typedef union jsdpun { uint32 hi, lo; #endif } s; - JSUint64 u64; + uint64 u64; jsdouble d; } jsdpun;