search for: 623b3043

Displaying 2 results from an estimated 2 matches for "623b3043".

2010 Nov 25
0
[LLVMdev] request for windows unicode support
...ort to the Windows implementation, however, paths will remain utf-8 encoded outside of System. I really wish UCS-2 never existed ;/. - Michael Spencer -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101125/623b3043/attachment.html>
2010 Nov 25
2
[LLVMdev] request for windows unicode support
Hi! Of course nobody wants to implement unicode support for windows because windows should support an utf8-locale and windows is obsolete anyway ;-) But there is a simple solution: use boost::filesystem::path everywhere you use file names and paths, for example in clang::FileManager::getFile. With version 3 opening a file is easy: std::fstream file(path.c_str()). Internally