mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
add U_FAILURE(status) in emplaceBackAndConfirm
This commit is contained in:
parent
d7f1b6e8ac
commit
63b93bde5c
1 changed files with 3 additions and 0 deletions
|
@ -778,6 +778,9 @@ public:
|
|||
|
||||
template <typename... Args>
|
||||
T *emplaceBackAndCheckErrorCode(UErrorCode &status, Args &&... args) {
|
||||
if (U_FAILURE(status)) {
|
||||
return nullptr;
|
||||
}
|
||||
T *pointer = this->create(args...);
|
||||
if (U_SUCCESS(status) && pointer == nullptr) {
|
||||
status = U_MEMORY_ALLOCATION_ERROR;
|
||||
|
|
Loading…
Add table
Reference in a new issue