Skip to content

Commit

Permalink
8315870: icu fails to compile with Visual Studio 2022 17.6.5
Browse files Browse the repository at this point in the history
Backport-of: ed92171
  • Loading branch information
kevinrushforth committed Sep 11, 2023
1 parent 149cf11 commit 400b8dd
Showing 1 changed file with 1 addition and 1 deletion.
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

1 comment on commit 400b8dd

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.