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

Unified Diff: icu52/patches/gcc46.patch

Issue 224943002: icu local change part1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: fix typos in uconfig.h and putil.patch Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: icu52/patches/gcc46.patch
===================================================================
--- icu52/patches/gcc46.patch (revision 261238)
+++ icu52/patches/gcc46.patch (working copy)
@@ -1,20 +0,0 @@
-diff --git a/public/common/unicode/unistr.h b/public/common/unicode/unistr.h
-index 57ea346..9aba6f0 100644
---- a/public/common/unicode/unistr.h
-+++ b/public/common/unicode/unistr.h
-@@ -4023,6 +4023,7 @@ UnicodeString::replace(int32_t start,
- int32_t count = 0;
- UBool isError = FALSE;
- U16_APPEND(buffer, count, U16_MAX_LENGTH, srcChar, isError);
-+ (void) isError;
- return doReplace(start, _length, buffer, 0, count);
- }
-
-@@ -4326,6 +4327,7 @@ UnicodeString::append(UChar32 srcChar) {
- int32_t _length = 0;
- UBool isError = FALSE;
- U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError);
-+ (void) isError;
- return doReplace(length(), 0, buffer, 0, _length);
- }
-

Powered by Google App Engine
This is Rietveld 408576698