ICU-22401 fix build on MSVC with cpp20

This commit is contained in:
Jiawen Geng 2023-06-19 04:06:48 +00:00 committed by Fredrik Roubert
parent 2e45e6ec0e
commit c7e967c456

View file

@ -56,7 +56,7 @@ using number::impl::DecimalQuantity;
// Return true if *a == *b.
static inline UBool objectEquals(const UObject* a, const UObject* b) {
// LATER: return *a == *b;
return *((const Measure*) a) == *((const Measure*) b);
return *((const Measure*) a) == *b;
}
// Return a clone of *a.