diff -Nur boost_1_49_0/libs/locale/src/icu/predefined_formatters.hpp boost_1_49_0.patched/libs/locale/src/icu/predefined_formatters.hpp
|
old
|
new
|
|
| 124 | 124 | ap.reset(icu::NumberFormat::createPercentInstance(locale_,err)); |
| 125 | 125 | break; |
| 126 | 126 | case fmt_spell: |
| 127 | | ap.reset(new icu::RuleBasedNumberFormat(URBNF_SPELLOUT,locale_,err)); |
| | 127 | ap.reset(new icu::RuleBasedNumberFormat(icu::URBNF_SPELLOUT,locale_,err)); |
| 128 | 128 | break; |
| 129 | 129 | case fmt_ord: |
| 130 | | ap.reset(new icu::RuleBasedNumberFormat(URBNF_ORDINAL,locale_,err)); |
| | 130 | ap.reset(new icu::RuleBasedNumberFormat(icu::URBNF_ORDINAL,locale_,err)); |
| 131 | 131 | break; |
| 132 | 132 | default: |
| 133 | 133 | throw std::runtime_error("locale::internal error should not get there"); |