mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 13:35:32 +00:00
ICU-22401 fix build on MSVC with cpp20
This commit is contained in:
parent
2e45e6ec0e
commit
c7e967c456
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue