OLD | NEW |
(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 > */ |
OLD | NEW |