Ticket #9089: strings_from_facet.hpp.patch

File strings_from_facet.hpp.patch, 848 bytes (added by Jackarain, 9 years ago)

fixed missing locale in strings_from_facet.hpp

  • boost/date_time/strings_from_facet.hpp

     
    5555    for (int m=0; m < 12; m++) {
    5656      tm_value.tm_mon = m;
    5757      stringstream_type ss;
     58          ss.imbue(locale);
    5859      ostream_iter_type oitr(ss);
    5960      std::use_facet<time_put_facet_type>(locale).put(oitr, ss, ss.fill(),
    6061                                                      &tm_value,
     
    109110    for (int i=0; i < 7; i++) {
    110111      tm_value.tm_wday = i;
    111112      stringstream_type ss;
     113          ss.imbue(locale);
    112114      ostream_iter_type oitr(ss);
    113115      std::use_facet<time_put_facet_type>(locale).put(oitr, ss, ss.fill(),
    114116                                                      &tm_value,