How to ignore 'comparison between signed and unsigned integer expressions'?

c++, gcc

Solution

`gcc -Wno-sign-compare`

But you should really fix the comparison it's warning you about anyway.

Problem

Can anybody please tell me which flag I have to use in order to make gcc ignore the 'comparison between signed and unsigned integer expressions' warning message.

Original source