diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-04-14 10:34:17 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-04-14 10:34:27 -0700 |
commit | 41ef1717e096a9e1761efa0df97c395f59c51f16 (patch) | |
tree | 7e854284ef8ce5189a63074857a408b6eea5a9cb /deps/v8/src/conversions.h | |
parent | 760bba55186eba039ca00e532f7813d2aea450a2 (diff) | |
download | node-new-41ef1717e096a9e1761efa0df97c395f59c51f16.tar.gz |
Upgrade V8 to 2.2.3.1
Diffstat (limited to 'deps/v8/src/conversions.h')
-rw-r--r-- | deps/v8/src/conversions.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/deps/v8/src/conversions.h b/deps/v8/src/conversions.h index 4aaf0c01ba..c4ceea6b90 100644 --- a/deps/v8/src/conversions.h +++ b/deps/v8/src/conversions.h @@ -100,8 +100,7 @@ double StringToDouble(const char* str, int flags, double empty_string_val = 0); double StringToDouble(String* str, int flags, double empty_string_val = 0); // Converts a string into an integer. -int StringToInt(String* str, int index, int radix, double* value); -int StringToInt(const char* str, int index, int radix, double* value); +double StringToInt(String* str, int radix); // Converts a double to a string value according to ECMA-262 9.8.1. // The buffer should be large enough for any floating point number. |