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
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
#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!!