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

Side by Side Diff: README.chromium

Issue 7004021: Fixed handling of different decimal separators on DigitList::set(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu46/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | patches/nan.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: icu 1 Name: icu
2 URL: http://site.icu-project.org/ 2 URL: http://site.icu-project.org/
3 Version: 4.6 3 Version: 4.6
4 4
5 Description: 5 Description:
6 This directory contains the source code of ICU 4.6 for C/C++ 6 This directory contains the source code of ICU 4.6 for C/C++
7 7
8 1. It was obtained with the following: 8 1. It was obtained with the following:
9 9
10 $ svn export --native-eol LF http://source.icu-project.org/repos/icu/icu/tag s/release-4-6 icu46 10 $ svn export --native-eol LF http://source.icu-project.org/repos/icu/icu/tag s/release-4-6 icu46
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 +++ D:/src/ent/src/third_party/icu/source/common/stringpiece.cpp 148 +++ D:/src/ent/src/third_party/icu/source/common/stringpiece.cpp
149 (working copy) 149 (working copy)
150 @@ -75,7 +75,7 @@ 150 @@ -75,7 +75,7 @@
151 * Visual Studios 9.0. 151 * Visual Studios 9.0.
152 * Cygwin with MSVC 9.0 also complains here about redefinition. 152 * Cygwin with MSVC 9.0 also complains here about redefinition.
153 */ 153 */
154 -#if (!defined(_MSC_VER) || (_MSC_VER > 1500)) && !defined(CYGWINMSVC) 154 -#if (!defined(_MSC_VER) || (_MSC_VER > 1500)) && !defined(CYGWINMSVC)
155 +#if (!defined(_MSC_VER) || (_MSC_VER > 1600)) && !defined(CYGWINMSVC) 155 +#if (!defined(_MSC_VER) || (_MSC_VER > 1600)) && !defined(CYGWINMSVC)
156 const int32_t StringPiece::npos; 156 const int32_t StringPiece::npos;
157 #endif 157 #endif
158
159 14. Fix for locales that don't use '.' as decimal separator: patches/nan.patch
160 - upstream bug: http://bugs.icu-project.org/trac/ticket/8561
161 - Handle other chars besides the dot. This is require because decNumber's
162 parser expects the dot as a decimal separator.
163 - Locales that don't use dot were producing "NaN" values.
164
OLDNEW
« no previous file with comments | « no previous file | patches/nan.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698