summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-49.1/layout/IndicReordering.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-49.1/layout/IndicReordering.h')
-rw-r--r--Build/source/libs/icu/icu-49.1/layout/IndicReordering.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/Build/source/libs/icu/icu-49.1/layout/IndicReordering.h b/Build/source/libs/icu/icu-49.1/layout/IndicReordering.h
index 8b2fdfa5583..4d61c525220 100644
--- a/Build/source/libs/icu/icu-49.1/layout/IndicReordering.h
+++ b/Build/source/libs/icu/icu-49.1/layout/IndicReordering.h
@@ -50,7 +50,6 @@ U_NAMESPACE_BEGIN
#define CF_BELOW_BASE 0x10000000U
#define CF_POST_BASE 0x08000000U
#define CF_LENGTH_MARK 0x04000000U
-#define CF_PRE_BASE 0x02000000U
#define CF_POS_BEFORE 0x00300000U
#define CF_POS_BELOW 0x00200000U
@@ -121,7 +120,6 @@ struct IndicClassTable
inline le_bool hasPostBaseForm(LEUnicode ch) const;
inline le_bool hasBelowBaseForm(LEUnicode ch) const;
inline le_bool hasAboveBaseForm(LEUnicode ch) const;
- inline le_bool hasPreBaseForm(LEUnicode ch) const;
inline static le_bool isVowelModifier(CharClass charClass);
inline static le_bool isStressMark(CharClass charClass);
@@ -138,7 +136,6 @@ struct IndicClassTable
inline static le_bool hasPostBaseForm(CharClass charClass);
inline static le_bool hasBelowBaseForm(CharClass charClass);
inline static le_bool hasAboveBaseForm(CharClass charClass);
- inline static le_bool hasPreBaseForm(CharClass charClass);
static const IndicClassTable *getScriptClassTable(le_int32 scriptCode);
};
@@ -260,11 +257,6 @@ inline le_bool IndicClassTable::hasPostBaseForm(CharClass charClass)
return (charClass & CF_POST_BASE) != 0;
}
-inline le_bool IndicClassTable::hasPreBaseForm(CharClass charClass)
-{
- return (charClass & CF_PRE_BASE) != 0;
-}
-
inline le_bool IndicClassTable::hasBelowBaseForm(CharClass charClass)
{
return (charClass & CF_BELOW_BASE) != 0;
@@ -345,11 +337,6 @@ inline le_bool IndicClassTable::hasBelowBaseForm(LEUnicode ch) const
return hasBelowBaseForm(getCharClass(ch));
}
-inline le_bool IndicClassTable::hasPreBaseForm(LEUnicode ch) const
-{
- return hasPreBaseForm(getCharClass(ch));
-}
-
inline le_bool IndicClassTable::hasAboveBaseForm(LEUnicode ch) const
{
return hasAboveBaseForm(getCharClass(ch));