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: compiler warning about literal


I think i got it why GCC gives the warning with -std=C90.
It basically wants to say:
"Now that we are under the C90 rules, this literal is 'unsigned long',
but under some newer standard it sould be 'signed long long', so make
sure your code won't broke if you try to compile it under new
standard".

Now the only question that remains is: why there is no way to disable
the warning?


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