This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: C++: No Warning for passing value > 255 as parameter to a functionrequiring "unsigned char"


correction...

unsigned char var = MakeUnsignedChar(1000);

...should be...

unsigned char var = MakeUnsignedCharFromInt(1000);

--Eljay


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]