Skip to content

Commit

Permalink
ICU-22401 fix build on MSVC with cpp20
Browse files Browse the repository at this point in the history
  • Loading branch information
gengjiawen authored and roubert committed Jul 14, 2023
1 parent 2e45e6e commit c7e967c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icu4c/source/i18n/fmtable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c7e967c

Please sign in to comment.