]> granicus.if.org Git - icu/commitdiff
ICU-13634 Adding TODO comment in CurrencyUnit constructor.
authorShane Carr <shane@unicode.org>
Thu, 19 Apr 2018 01:16:47 +0000 (01:16 +0000)
committerShane Carr <shane@unicode.org>
Thu, 19 Apr 2018 01:16:47 +0000 (01:16 +0000)
X-SVN-Rev: 41249

icu4c/source/i18n/currunit.cpp

index 5a6ff6e7e19ffc0294e7294e10b4e0dcbeb6b050..b65a67c112b1507008016993c0dc33583d429285 100644 (file)
@@ -37,6 +37,7 @@ CurrencyUnit::CurrencyUnit(ConstChar16Ptr _isoCode, UErrorCode& ec) {
     } else {
         isoCodeToUse = _isoCode;
     }
+    // TODO: Perform uppercasing here like in ICU4J Currency.getInstance()?
     u_strncpy(isoCode, isoCodeToUse, 3);
     isoCode[3] = 0;
     char simpleIsoCode[4];