Re: [Mingw-w64-public] mingw-w64-tools build error

2013-11-01 Thread Kai Tietz
Hi Ruben, thanks for reporting this build-issue. Fix on trunk at rev. 6365. Regards, Kai 2013/10/29 Ruben Van Boxem : > Hi, > > I currently have a mingw-w64-tools AUR package, which included gendef and > genidl. I noticed there is also genpeimg and widl in the mingw-w64-tools > directory, so I

Re: [Mingw-w64-public] USING u16string, HOW 2?

2013-11-01 Thread Ruben Van Boxem
2013/11/1 Incongruous > #include > #include > > int main(){ > std::string s("string"); > std::cout << s << std::endl; > std::u16string u16s(u"string"); > std::cout << u16s << std::endl; > std::cin.get(); > > return 0; > } > > The above code gives me the following errors, am I

[Mingw-w64-public] USING u16string, HOW 2?

2013-11-01 Thread Incongruous
#include #include int main(){ std::string s("string"); std::cout << s << std::endl; std::u16string u16s(u"string"); std::cout << u16s << std::endl; std::cin.get(); return 0; } The above code gives me the following errors, am I using u16string correctly? Thanks in advance!!