forked from spotify/spotify-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'vendor/double-conversion/' changes from 9ed0dec..5cc233e
5cc233e Add support for microblaze. 4a51e73 Add support for e2k architecture. (#118) 7da5db9 Add min exponent width option in double-to-string conversion (#116) 3f9cd30 Remove reference to `diy-fp.cc` e424c2b More Bignum fiddling. (#108) 583c6b7 Merge branch 'master' of github.com:google/double-conversion 5720620 Remove redundant parenthesis. 7bc0c47 Optimise Bignum layout. (#107) e67096c Split Strtod() (#106) 32c4026 Split double-conversion. (#104) 251fef6 Fix naming. (#103) 2c29075 Consistent macro prefix. (#101) e394b49 Use standard min/max. (#102) 5fa81e8 Fix some issues with invalid hex-float literals. fb2364d Improve gitignore. 8fcee05 Usefulcat master (#98) 067c887 Fix warning for g++ 4.9.3. d1c0b80 Update Changelog. 4fa48d5 CMake: install to correct lib dir (#93) cb5cf99 Add big endian ARM support (#92) 3dfc1e3 Switch to relative includes. 860b431 Fix typo in test. 53c4c75 Update Changelog and version number. f5c59a2 Merge branch 'master' of github.com:google/double-conversion 8751aaf Fix 16-bit separators. 990c447 msvc: check if _MSC_VER is defined (#88) 87d21e3 Allow for compilation in emscripten (#86) 4b2a7f3 Merge branch 'branch_v3.1' d583754 Add test cases. 9823421 Update version numbers. eafa625 Add support of ARC architecture (#82) 4199ef3 Update version numbers. e67d737 Merge branch 'master' into branch_v3.1 fd043b2 Fix hex literal bug. 20ecba5 Support separator characters. 05a3fea Add support for hexadecimal float literals. aa554d9 Fix bug where hex numbers would lose the minus sign. b479bea Add comments for achitecture check. 768a445 Add support for aarch64_be, or1k and microblazebe. 4e8b3b5 Add support for Windows on ARM and ARM64 (#76) 9a8e518 Merge pull request spotify#68 from floitschG/static_size_assert ae9ad90 Merge pull request spotify#69 from floitschG/pnacl e543cca Add Native Client as support architecture. da420c3 Use `static_assert` with newer compilers. 7a560cf Merge pull request spotify#65 from floitschG/avoid_undef_cast 3ef9576 Address comments. df50df0 Avoid undefined cast to make ASAN happy. 3992066 Merge pull request spotify#64 from google/floitschG-patch-1 6c1e714 Add `exports_files` 3ad9d20 Processed length should include no trailing junk (spotify#63) 1b5fa31 Clarify output charset in DoubleToAscii documentation (spotify#61) e1aa127 Fix warning for code that will never be executed (spotify#59) cf2f0f3 Merge pull request spotify#57 from google/rename_macro c58352d Rename macros. fe9b384 Merge pull request spotify#52 from uburuntu/master 1d5a688 REF: replace deprecated headers 4873703 REF: meaningless static definition in anonymous namespace 14033f6 REF: init member in constructor 2a257b7 Merge pull request spotify#51 from isaachier/master 3c04013 Suppress issue in clang analyzer. 678cef3 Merge pull request spotify#50 from isaachier/master a131c65 Remove unused CMake file. 5664746 Merge pull request spotify#47 from AKindyakov/case_insensibility_for_special 8140713 Remove unnecessary INSTALL_INTERFACE expression. e13e72e Use template for CMake installation. aa2df66 Fix mistake for build interface include dir. 8e02bf4 Improve CMake changes. a711666 Update CMake package generation. 9972d3c Implement ALLOW_CASE_INSENSIBILITY mode for StringToDoubleConverter class 23cac04 Update Changelog. ca220cb Update Changelog. 7f54e48 Merge branch 'avoid_negative_shift' 4abe326 Avoid negative shift. (spotify#42) 78cd7b1 Add assert and test. 1921cb3 Avoid negative shift. d8d4e66 Merge pull request spotify#39 from uburuntu/master 48b5e70 Fix previous fix 12c0a23 cctest: fix possible null pointer dereference 617af29 Add const qualifiers where it possible bb8e225 ieee: remove extra qualification Double:: 79fb300 Merge pull request spotify#38 from sorear/add-riscv 8316ed5 Add support for RISC-V d4d68e4 Merge pull request spotify#37 from KindDragon/patch-1 d7f9404 Update and rename README to README.md git-subtree-dir: vendor/double-conversion git-subtree-split: 5cc233e98b74c5c370de888198a2b35200d55468
- Loading branch information
Showing
44 changed files
with
3,668 additions
and
1,945 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ Mike Hommey <[email protected]> | |
Martin Olsson <[email protected]> | ||
Kent Williams <[email protected]> | ||
Elan Ruusamäe <[email protected]> | ||
Colin Hirsch <[email protected]> | ||
Zhenyi Peng <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
|
||
licenses(["notice"]) | ||
|
||
exports_files(["LICENSE"]) | ||
|
||
cc_library( | ||
name = "double-conversion", | ||
srcs = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,96 @@ | ||
2019-10-12: | ||
Really add support for microblaze. A previous commit was lacking | ||
the necessary line. | ||
|
||
2019-09-02: | ||
Add support for e2k architectur. Thanks to Michael Shigorin. | ||
|
||
2019-08-01: | ||
Add min exponent width option in double-to-string conversion. | ||
|
||
2019-06-22: | ||
Remove redundant parenthesis. | ||
|
||
2019-06-11: | ||
Changed all macros to use DOUBLE_CONVERSION_ as prefix. | ||
Renamed ALLOW_CASE_INSENSIBILITY to ALLOW_CASE_INSENSITIVITY, | ||
the old name is still available but officially deprecated. | ||
Created and exposed new intermediate function StrtodTrimmed(). | ||
|
||
2019-05-25: | ||
Fix `0x` for string->double conversion when Hex Floats are allowed. | ||
Avoid integer overflow when exponents for hex floats were too big. | ||
Update version number. | ||
|
||
2019-04-22: | ||
Fixed warning in gcc4.9. Thanks to Scott McCaskill | ||
(https://github.com/usefulcat) for the patch. | ||
|
||
2019-04-16: | ||
Merged changes to install libraries in the correct place when | ||
using 64-bit libraries. | ||
Contributed by Jason Zaman <[email protected]> and (independently) | ||
Dan Church (https://github.com/h3xx) | ||
|
||
2019-03-11: | ||
Use relative includes in the library. This shouldn't have any visible effect | ||
for consumers of the library. | ||
|
||
Update version number. | ||
|
||
2019-03-06: | ||
Fix typo in test. | ||
Update version number. | ||
|
||
2019-03-03: | ||
Fix separator characters when they they don't fit into 8 bits. | ||
Update version number. | ||
|
||
2019-02-16: | ||
Check correctly for _MSC_VER. | ||
Patch by Ben Boeckel | ||
|
||
2019-01-17: | ||
Allow the library to be compiled for Emscripten. | ||
Patch by Tim Paine. | ||
|
||
2018-09-15: | ||
Update version numbers. This also updates the shared-library version number. | ||
|
||
2018-09-09: | ||
Fix bug where large hex literals would lose their minus sign. | ||
Added support for separator characters (which adds a new optional | ||
argument). Thus increasing the version number to 3.1.0 | ||
Added support for hexadecimal float literals. | ||
Support for more architectures. | ||
|
||
2017-12-06: | ||
Renamed `DISALLOW_COPY_AND_ASSIGN` and `DISALLOW_IMPLICIT_CONSTRUCTORS` | ||
macros to `DC_DISALLOW_COPY_AND_ASSIGN` and | ||
`DC_DISALLOW_IMPLICIT_CONSTRUCTORS` to make it easier to integrate the | ||
library with other libraries that have similar macros. | ||
|
||
2017-08-05: | ||
Tagged v3.0.0. | ||
Due to the directory rename switching to a new version number. | ||
The API for the library itself hasn't changed. | ||
|
||
2017-03-04: | ||
Avoid negative shift. Fixes #41. | ||
|
||
2016-11-17: | ||
Support RISC-V. | ||
|
||
|
||
2016-09-10: | ||
Add fPIC flag on x86_64 if the compiler supports it. Fixes #34. | ||
|
||
2015 and 2016: | ||
Lots of improvements to the build system. | ||
|
||
2015: | ||
Warning fixes. | ||
|
||
2015-05-19: | ||
Rename 'src' directory to 'double-conversion'. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@PACKAGE_INIT@ | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") | ||
check_required_components("@PROJECT_NAME@") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.os |
Oops, something went wrong.