We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa92db commit ea903d4Copy full SHA for ea903d4
1 file changed
src/uu/date/src/date.rs
@@ -706,7 +706,8 @@ fn format_date_with_locale_aware_months(
706
date: &Zoned,
707
format_string: &str,
708
config: &Config<PosixCustom>,
709
- skip_localization: bool,
+ #[cfg(feature = "i18n-datetime")] skip_localization: bool,
710
+ #[cfg(not(feature = "i18n-datetime"))] _skip_localization: bool,
711
) -> Result<String, String> {
712
// First check if format string has GNU modifiers (width/flags) and format if present
713
// This optimization combines detection and formatting in a single pass
0 commit comments