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

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, 7 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') | source/i18n/digitlst.cpp » ('J')
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 +++ D:/src/ent/src/third_party/icu/source/common/stringpiece.cpp 143 +++ D:/src/ent/src/third_party/icu/source/common/stringpiece.cpp
144 (working copy) 144 (working copy)
145 @@ -75,7 +75,7 @@ 145 @@ -75,7 +75,7 @@
146 * Visual Studios 9.0. 146 * Visual Studios 9.0.
147 * Cygwin with MSVC 9.0 also complains here about redefinition. 147 * Cygwin with MSVC 9.0 also complains here about redefinition.
148 */ 148 */
149 -#if (!defined(_MSC_VER) || (_MSC_VER > 1500)) && !defined(CYGWINMSVC) 149 -#if (!defined(_MSC_VER) || (_MSC_VER > 1500)) && !defined(CYGWINMSVC)
150 +#if (!defined(_MSC_VER) || (_MSC_VER > 1600)) && !defined(CYGWINMSVC) 150 +#if (!defined(_MSC_VER) || (_MSC_VER > 1600)) && !defined(CYGWINMSVC)
151 const int32_t StringPiece::npos; 151 const int32_t StringPiece::npos;
152 #endif 152 #endif
153
154 13. Fix for locales that don't use '.' as decimal separator: patches/nan.patch
155 - Handle other chars besides the dot. This is require because decNumber's
156 parser expects the dot as a decimal separator.
157 - Locales that don't use dot were producing "NaN" values.
158
OLDNEW
« no previous file with comments | « no previous file | patches/nan.patch » ('j') | source/i18n/digitlst.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698