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

Side by Side Diff: third_party/double-conversion/README.google

Issue 2019983002: Roll third_party/double_conversion (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Minor update Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/double-conversion/src/bignum.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 URL: https://github.com/google/double-conversion
2 Version: 56a04575a474b929a4aa4fb72d83d46c8a93f294
3 License: BSD
4 License File: LICENSE
5
6 Description:
7 This project (double-conversion) provides binary-decimal and decimal-binary
8 routines for IEEE doubles.
9
10 Local Modifications:
11 Only the source is included (no build files), and the following patch is
12 applied to src/double-conversion.cc:
13
14 34,35c34,40
15 < #include "fast-dtoa.h"
16 < #include "fixed-dtoa.h"
17 ---
18 >
19 > // Remove the double-based fast cases and use big int operations always for
20 > // Dartino. This cuts more than 8KB off the binary size.
21 > //
22 > // #include "fast-dtoa.h"
23 > // #include "fixed-dtoa.h"
24 >
25 387a393,395
26 > // Remove the double-based fast cases and use big int operations always for
27 > // Dartino. This cuts more than 8KB off the binary size.
28 > /*
29 408a417
30 > */
OLDNEW
« no previous file with comments | « no previous file | third_party/double-conversion/src/bignum.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698