diff options
Diffstat (limited to 'thirdparty/icu4c/common/appendable.cpp')
-rw-r--r-- | thirdparty/icu4c/common/appendable.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/thirdparty/icu4c/common/appendable.cpp b/thirdparty/icu4c/common/appendable.cpp index fca3c1e413..f9b20180eb 100644 --- a/thirdparty/icu4c/common/appendable.cpp +++ b/thirdparty/icu4c/common/appendable.cpp @@ -37,23 +37,23 @@ Appendable::appendString(const UChar *s, int32_t length) { UChar c; while((c=*s++)!=0) { if(!appendCodeUnit(c)) { - return FALSE; + return false; } } } else if(length>0) { const UChar *limit=s+length; do { if(!appendCodeUnit(*s++)) { - return FALSE; + return false; } } while(s<limit); } - return TRUE; + return true; } UBool Appendable::reserveAppendCapacity(int32_t /*appendCapacity*/) { - return TRUE; + return true; } UChar * |