Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Unified Diff: runtime/third_party/double-conversion/src/strtod.h

Issue 184153002: - Update runtime/third_party/double-conversion to version 1.1.5. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_
« no previous file with comments | « runtime/third_party/double-conversion/src/ieee.h ('k') | runtime/third_party/double-conversion/src/strtod.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698