http://llvm.org/bugs/show_bug.cgi?id=8781
Dale Johannesen <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |INVALID --- Comment #1 from Dale Johannesen <[email protected]> 2010-12-13 13:20:41 CST --- There doesn't seem to be a defined way to print a wchar_t as an integer in the standards, so I think the current behavior is reasonable. Both the size and signedness of wchar_t are implementation-defined. They're going to match one of the other integer types and you can argue that the way you print that integer type (usually %lld) should not warn when given a wchar_t., but that is not portable. The portable way to do this is with a cast; I think it's reasonable to warn on code that doesn't do that. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
