Index: runtime/third_party/double-conversion/src/strtod.h |
=================================================================== |
--- runtime/third_party/double-conversion/src/strtod.h (revision 33139) |
+++ runtime/third_party/double-conversion/src/strtod.h (working copy) |
@@ -36,6 +36,10 @@ |
// contain a dot or a sign. It must not start with '0', and must not be empty. |
double Strtod(Vector<const char> buffer, int exponent); |
+// The buffer must only contain digits in the range [0-9]. It must not |
+// contain a dot or a sign. It must not start with '0', and must not be empty. |
+float Strtof(Vector<const char> buffer, int exponent); |
+ |
} // namespace double_conversion |
#endif // DOUBLE_CONVERSION_STRTOD_H_ |