| Index: third_party/icu/source/i18n/numfmt.cpp
|
| ===================================================================
|
| --- third_party/icu/source/i18n/numfmt.cpp (revision 74230)
|
| +++ third_party/icu/source/i18n/numfmt.cpp (working copy)
|
| @@ -387,7 +387,7 @@
|
|
|
| const UObject* o = obj.getObject(); // most commonly o==NULL
|
| const CurrencyAmount* amt;
|
| - if (o != NULL && (amt = dynamic_cast<const CurrencyAmount*>(o)) != NULL) {
|
| + if (o != NULL && (amt = CR_DYNAMIC_CAST<const CurrencyAmount*>(o)) != NULL) {
|
| // getISOCurrency() returns a pointer to internal storage, so we
|
| // copy it to retain it across the call to setCurrency().
|
| const UChar* curr = amt->getISOCurrency();
|
|
|