16 Oct
2008
16 Oct
'08
8:58 a.m.
Germain BARRET wrote:
Hi,
I'm still using Boost 1.35 on VC++ 2005
I had a code very well building and linking, only I had some charset problems at display. That's why I decided to switch my code to UNICODE (or like) switching all the std::string -> std::wstring In the area of boost, I also switched all the boost::filesystem::path -> boost::filesystem::wpath
It looks like the filesystem libs are built with /Zc:wchar_t where as you are building with /Zc:wchar_t- and I'm afraid never the twain shall meet :-( Are you able to turn on /Zc:wchar_t in your project settings? HTH, John.