summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/wtf/dtoa.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/wtf/dtoa.h')
-rw-r--r--JavaScriptCore/wtf/dtoa.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/JavaScriptCore/wtf/dtoa.h b/JavaScriptCore/wtf/dtoa.h
index e0938ff..bf00ccc 100644
--- a/JavaScriptCore/wtf/dtoa.h
+++ b/JavaScriptCore/wtf/dtoa.h
@@ -36,14 +36,8 @@ double strtod(const char* s00, char** se);
typedef char DtoaBuffer[80];
void dtoa(DtoaBuffer result, double d, int ndigits, int* decpt, int* sign, char** rve);
-// dtoa() for ECMA-262 'ToString Applied to the Number Type.'
-// The *resultLength will have the length of the resultant string in bufer.
-// The resultant string isn't terminated by 0.
-void doubleToStringInJavaScriptFormat(double, DtoaBuffer, unsigned* resultLength);
-
} // namespace WTF
using WTF::DtoaBuffer;
-using WTF::doubleToStringInJavaScriptFormat;
#endif // WTF_dtoa_h