Changes between Initial Version and Version 1 of Ticket #287


Ignore:
Timestamp:
May 29, 2009, 6:27:51 PM (13 years ago)
Author:
Marshall Clow
Comment:

Marshall sez: looking at the code in trunk, it appears that this patch has been (more or less) applied. I'm not sure about the constructor call to std:locale() for each character, though. {{

while(beg != end) {

#if !defined(BOOST_DATE_TIME_NO_LOCALE)

ss << std::use_facet<std::ctype<wchar_t> >(std::locale()).narrow(*beg++, 'X'); 'X' will cause exception to be thrown

#else

ss << ss.narrow(*beg++, 'X');

#endif

}

}}

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #287

    • Property MilestoneBoost 1.40.0
    • Property SeverityProblem