summaryrefslogtreecommitdiffstats
path: root/thirdparty/icu4c/common/utrie_swap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/icu4c/common/utrie_swap.cpp')
-rw-r--r--thirdparty/icu4c/common/utrie_swap.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/thirdparty/icu4c/common/utrie_swap.cpp b/thirdparty/icu4c/common/utrie_swap.cpp
index b01b94601e..83d183699d 100644
--- a/thirdparty/icu4c/common/utrie_swap.cpp
+++ b/thirdparty/icu4c/common/utrie_swap.cpp
@@ -31,10 +31,10 @@ utrie_swap(const UDataSwapper *ds,
int32_t size;
UBool dataIs32;
- if(pErrorCode==NULL || U_FAILURE(*pErrorCode)) {
+ if(pErrorCode==nullptr || U_FAILURE(*pErrorCode)) {
return 0;
}
- if(ds==NULL || inData==NULL || (length>=0 && outData==NULL)) {
+ if(ds==nullptr || inData==nullptr || (length>=0 && outData==nullptr)) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}
@@ -105,7 +105,7 @@ utrie2_swap(const UDataSwapper *ds,
if(U_FAILURE(*pErrorCode)) {
return 0;
}
- if(ds==NULL || inData==NULL || (length>=0 && outData==NULL)) {
+ if(ds==nullptr || inData==nullptr || (length>=0 && outData==nullptr)) {
*pErrorCode=U_ILLEGAL_ARGUMENT_ERROR;
return 0;
}