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
Johan Vos committed Oct 15, 2024
1 parent 11c9c81 commit 20e4310
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

5 comments on commit 20e4310

@johanvos
Copy link
Collaborator

Choose a reason for hiding this comment

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

/skara tag 17.0.13+2

@openjdk
Copy link

@openjdk openjdk bot commented on 20e4310 Oct 15, 2024

Choose a reason for hiding this comment

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

@johanvos The tag 17.0.13+2 was successfully created.

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

@johanvos
Copy link
Collaborator

Choose a reason for hiding this comment

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

/skara tag 17.0.14+0

@openjdk
Copy link

@openjdk openjdk bot commented on 20e4310 Oct 28, 2024

Choose a reason for hiding this comment

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

@johanvos The tag 17.0.14+0 was successfully created.

Please sign in to comment.