summaryrefslogtreecommitdiff
path: root/deps/v8/src/fast-dtoa.h
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-05-10 09:58:20 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-05-10 09:58:20 -0700
commit615d8906226ffc56238b44141cdb3374f47e805a (patch)
tree3850f314701edf5156ec52f296eac9f38959bbfe /deps/v8/src/fast-dtoa.h
parent8ab238e7de8429961ce4d6fd9114555e5df90a13 (diff)
downloadnode-615d8906226ffc56238b44141cdb3374f47e805a.tar.gz
Upgrade V8 to 2.2.9
Diffstat (limited to 'deps/v8/src/fast-dtoa.h')
-rw-r--r--deps/v8/src/fast-dtoa.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/deps/v8/src/fast-dtoa.h b/deps/v8/src/fast-dtoa.h
index 9f1f76aeb..4403a7502 100644
--- a/deps/v8/src/fast-dtoa.h
+++ b/deps/v8/src/fast-dtoa.h
@@ -36,7 +36,7 @@ namespace internal {
static const int kFastDtoaMaximalLength = 17;
// Provides a decimal representation of v.
-// v must not be (positive or negative) zero and it must not be Infinity or NaN.
+// v must be a strictly positive finite double.
// Returns true if it succeeds, otherwise the result can not be trusted.
// There will be *length digits inside the buffer followed by a null terminator.
// If the function returns true then
@@ -50,7 +50,6 @@ static const int kFastDtoaMaximalLength = 17;
// otherwise.
bool FastDtoa(double d,
Vector<char> buffer,
- int* sign,
int* length,
int* point);