Ticket #12784: patch-src_unicode.cpp.diff
File patch-src_unicode.cpp.diff, 523 bytes (added by jmroot (Joshua Root), 17 years ago) |
---|
-
src/unicode.cpp
old new 182 182 #if (!defined(OSX_LEOPARD) && defined(DARWIN)) || defined(SUNOS) || defined(FREEBSD) 183 183 const char * in = input.c_str(); 184 184 #else 185 c har * in = const_cast<char*>(input.data());185 const char * in = const_cast<char*>(input.data()); 186 186 #endif 187 187 char * out = const_cast<char*>(reinterpret_cast<const char*>(output.data())); 188 188 iconv(desc_,&in,&inleft,&out,&outleft);