diff options
Diffstat (limited to 'vendor/chrono/src/format/locales.rs')
-rw-r--r-- | vendor/chrono/src/format/locales.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vendor/chrono/src/format/locales.rs b/vendor/chrono/src/format/locales.rs index f7b4bbde5..d6fecc978 100644 --- a/vendor/chrono/src/format/locales.rs +++ b/vendor/chrono/src/format/locales.rs @@ -1,33 +1,33 @@ use pure_rust_locales::{locale_match, Locale}; -pub(crate) fn short_months(locale: Locale) -> &'static [&'static str] { +pub(crate) const fn short_months(locale: Locale) -> &'static [&'static str] { locale_match!(locale => LC_TIME::ABMON) } -pub(crate) fn long_months(locale: Locale) -> &'static [&'static str] { +pub(crate) const fn long_months(locale: Locale) -> &'static [&'static str] { locale_match!(locale => LC_TIME::MON) } -pub(crate) fn short_weekdays(locale: Locale) -> &'static [&'static str] { +pub(crate) const fn short_weekdays(locale: Locale) -> &'static [&'static str] { locale_match!(locale => LC_TIME::ABDAY) } -pub(crate) fn long_weekdays(locale: Locale) -> &'static [&'static str] { +pub(crate) const fn long_weekdays(locale: Locale) -> &'static [&'static str] { locale_match!(locale => LC_TIME::DAY) } -pub(crate) fn am_pm(locale: Locale) -> &'static [&'static str] { +pub(crate) const fn am_pm(locale: Locale) -> &'static [&'static str] { locale_match!(locale => LC_TIME::AM_PM) } -pub(crate) fn d_fmt(locale: Locale) -> &'static str { +pub(crate) const fn d_fmt(locale: Locale) -> &'static str { locale_match!(locale => LC_TIME::D_FMT) } -pub(crate) fn d_t_fmt(locale: Locale) -> &'static str { +pub(crate) const fn d_t_fmt(locale: Locale) -> &'static str { locale_match!(locale => LC_TIME::D_T_FMT) } -pub(crate) fn t_fmt(locale: Locale) -> &'static str { +pub(crate) const fn t_fmt(locale: Locale) -> &'static str { locale_match!(locale => LC_TIME::T_FMT) } |