Gcc: force compiler to use unsigned char by default

Viewed 14231

Since the nature of a char in C++ is compiler-dependent when the unsigned qualifier is not present, is there an argument I could pass on to GCC which would force all chars to be compiled as unsigned?

5 Answers
Related