summaryrefslogtreecommitdiff
path: root/thirdparty/icu4c/common/uvector.h
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-05-17 18:14:19 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-05-17 18:39:31 +0300
commit93fba7ead33b45a6f9904ab6a69ada72e8564230 (patch)
tree2d29c9b6ebaec415bdce2100e2319fcb651d8bbe /thirdparty/icu4c/common/uvector.h
parent7ea8cde9834b0fda4a928217b7880da3dd330214 (diff)
Update HarfBuzz, ICU and FreeType.
HarfBuzz: Update to version 4.2.1 FreeType: Update to version 2.12.1 ICU: Update to version 71.1
Diffstat (limited to 'thirdparty/icu4c/common/uvector.h')
-rw-r--r--thirdparty/icu4c/common/uvector.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/thirdparty/icu4c/common/uvector.h b/thirdparty/icu4c/common/uvector.h
index f61fcc2be6..1eb7d136e7 100644
--- a/thirdparty/icu4c/common/uvector.h
+++ b/thirdparty/icu4c/common/uvector.h
@@ -123,12 +123,6 @@ public:
// java.util.Vector API
//------------------------------------------------------------
- /*
- * Old version of addElement, with non-standard error handling.
- * Will be removed once all uses have been switched to the new addElement().
- */
- void addElementX(void* obj, UErrorCode &status);
-
/**
* Add an element at the end of the vector.
* For use only with vectors that do not adopt their elements, which is to say,
@@ -197,12 +191,6 @@ public:
inline UBool isEmpty(void) const {return count == 0;}
- /*
- * Old version of ensureCapacity, with non-standard error handling.
- * Will be removed once all uses have been switched to the new ensureCapacity().
- */
- UBool ensureCapacityX(int32_t minimumCapacity, UErrorCode &status);
-
UBool ensureCapacity(int32_t minimumCapacity, UErrorCode &status);
/**