From 84ccb7130f1f0ee5dba2d06d277ddfce8f757360 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Sat, 27 Sep 2025 10:21:54 +0530 Subject: [PATCH] Fix IntlNumberRangeFormatter to build on <= ICU 67 --- ext/intl/rangeformatter/rangeformatter_class.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/intl/rangeformatter/rangeformatter_class.cpp b/ext/intl/rangeformatter/rangeformatter_class.cpp index a19bbb451d801..5ffdf938aadfa 100644 --- a/ext/intl/rangeformatter/rangeformatter_class.cpp +++ b/ext/intl/rangeformatter/rangeformatter_class.cpp @@ -20,7 +20,9 @@ extern "C" { #if U_ICU_VERSION_MAJOR_NUM >= 63 #include +#if U_ICU_VERSION_MAJOR_NUM >= 68 #include +#endif #include #include #include "../intl_convertcpp.h"