Skip to content

Commit ed92171

Browse files
committedSep 8, 2023
8315870: icu fails to compile with Visual Studio 2022 17.6.5
Reviewed-by: arapte, jvos
1 parent 8fcd6e5 commit ed92171

File tree

1 file changed

+1
-1
lines changed
  • modules/javafx.web/src/main/native/Source/ThirdParty/icu/source/i18n

1 file changed

+1
-1
lines changed
 

‎modules/javafx.web/src/main/native/Source/ThirdParty/icu/source/i18n/fmtable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ using number::impl::DecimalQuantity;
5656
// Return true if *a == *b.
5757
static inline UBool objectEquals(const UObject* a, const UObject* b) {
5858
// LATER: return *a == *b;
59-
return *((const Measure*) a) == *((const Measure*) b);
59+
return *((const Measure*) a) == *b;
6060
}
6161

6262
// Return a clone of *a.

0 commit comments

Comments
 (0)
Please sign in to comment.