summaryrefslogtreecommitdiff
path: root/deps/icu-small/source/common/unicode/stringoptions.h
diff options
context:
space:
mode:
authorSteven R. Loomis <srloomis@us.ibm.com>2018-10-17 09:43:52 -0700
committerSteven R. Loomis <srloomis@us.ibm.com>2018-10-24 08:27:36 -0700
commit6786ff4d3688512d8b717ec24188818ac5493d0b (patch)
treeab18b7a66afee52420fe0bedf7b38eb93f671373 /deps/icu-small/source/common/unicode/stringoptions.h
parentd8f2d2726143ecfbf99b90b7bbbc6f41b3cd95fc (diff)
downloadandroid-node-v8-6786ff4d3688512d8b717ec24188818ac5493d0b.tar.gz
android-node-v8-6786ff4d3688512d8b717ec24188818ac5493d0b.tar.bz2
android-node-v8-6786ff4d3688512d8b717ec24188818ac5493d0b.zip
deps: icu 63.1 bump (CLDR 34)
- Full release notes: http://site.icu-project.org/download/63 Fixes: https://github.com/nodejs/node/issues/22344 PR-URL: https://github.com/nodejs/node/pull/23715 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'deps/icu-small/source/common/unicode/stringoptions.h')
-rw-r--r--deps/icu-small/source/common/unicode/stringoptions.h18
1 files changed, 5 insertions, 13 deletions
diff --git a/deps/icu-small/source/common/unicode/stringoptions.h b/deps/icu-small/source/common/unicode/stringoptions.h
index f2de96e963..7b9f70944f 100644
--- a/deps/icu-small/source/common/unicode/stringoptions.h
+++ b/deps/icu-small/source/common/unicode/stringoptions.h
@@ -39,8 +39,6 @@
*/
#define U_FOLD_CASE_EXCLUDE_SPECIAL_I 1
-#ifndef U_HIDE_DRAFT_API
-
/**
* Titlecase the string as a whole rather than each word.
* (Titlecase only the character at index 0, possibly adjusted.)
@@ -50,7 +48,7 @@
* including both an options bit and an explicit BreakIterator.
*
* @see U_TITLECASE_ADJUST_TO_CASED
- * @draft ICU 60
+ * @stable ICU 60
*/
#define U_TITLECASE_WHOLE_STRING 0x20
@@ -63,12 +61,10 @@
* including both an options bit and an explicit BreakIterator.
*
* @see U_TITLECASE_ADJUST_TO_CASED
- * @draft ICU 60
+ * @stable ICU 60
*/
#define U_TITLECASE_SENTENCES 0x40
-#endif // U_HIDE_DRAFT_API
-
/**
* Do not lowercase non-initial parts of words when titlecasing.
* Option bit for titlecasing APIs that take an options bit set.
@@ -112,8 +108,6 @@
*/
#define U_TITLECASE_NO_BREAK_ADJUSTMENT 0x200
-#ifndef U_HIDE_DRAFT_API
-
/**
* Adjust each titlecasing BreakIterator index to the next cased character.
* (See the Unicode Standard, chapter 3, Default Case Conversion, R3 toTitlecase(X).)
@@ -130,7 +124,7 @@
* It is an error to specify multiple titlecasing adjustment options together.
*
* @see U_TITLECASE_NO_BREAK_ADJUSTMENT
- * @draft ICU 60
+ * @stable ICU 60
*/
#define U_TITLECASE_ADJUST_TO_CASED 0x400
@@ -141,7 +135,7 @@
* @see CaseMap
* @see Edits
* @see Normalizer2
- * @draft ICU 60
+ * @stable ICU 60
*/
#define U_EDITS_NO_RESET 0x2000
@@ -153,12 +147,10 @@
* @see CaseMap
* @see Edits
* @see Normalizer2
- * @draft ICU 60
+ * @stable ICU 60
*/
#define U_OMIT_UNCHANGED_TEXT 0x4000
-#endif // U_HIDE_DRAFT_API
-
/**
* Option bit for u_strCaseCompare, u_strcasecmp, unorm_compare, etc:
* Compare strings in code point order instead of code unit order.