Ticket #10205: 10205.patch

File 10205.patch, 394 bytes (added by sleary@…, 8 years ago)

Makes the issue go away on Solaris 10 (but not a proper fix)

Line 
1113,114c113,115
2< std::wstring s (model.wstring()); // std::string ng for MBCS encoded POSIX
3< const wchar_t hex[] = L"0123456789abcdef";
4---
5> std::string s (model.string()); // std::string ng for MBCS encoded POSIX
6>
7> const char hex[] = "0123456789abcdef";
8120c121
9< for(std::wstring::size_type i=0; i < s.size(); ++i)
10---
11> for(std::string::size_type i=0; i < s.size(); ++i)