kill unsigned / signed comparison error
- by anon
In general, I want warnings of unsigned vs signed.
However, in this particular case, I want it supressed;
std::vector<Blah> blahs;
for(int i = 0; i < blahs.size(); ++i) { ...
I want to kill this comparison.
Thanks!
(using g++)