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

Unified Diff: third_party/icu38/source/common/uset_imp.h

Issue 52030: Apply ICU patches for ICU tickets 6175 (ISO-2022 and ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « third_party/icu38/source/common/ucnvmbcs.c ('k') | third_party/icu38/source/test/cintltst/ncnvtst.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/icu38/source/common/uset_imp.h
===================================================================
--- third_party/icu38/source/common/uset_imp.h (revision 10949)
+++ third_party/icu38/source/common/uset_imp.h (working copy)
@@ -36,6 +36,9 @@
typedef void U_CALLCONV
USetRemove(USet *set, UChar32 c);
+typedef void U_CALLCONV
+USetRemoveRange(USet *set, UChar32 start, UChar32 end);
+
/**
* Interface for adding items to a USet, to keep low-level code from
* statically depending on the USet implementation.
@@ -47,6 +50,7 @@
USetAddRange *addRange;
USetAddString *addString;
USetRemove *remove;
+ USetRemoveRange *removeRange;
};
typedef struct USetAdder USetAdder;
« no previous file with comments | « third_party/icu38/source/common/ucnvmbcs.c ('k') | third_party/icu38/source/test/cintltst/ncnvtst.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698