What steps will reproduce the problem?
1. generate c/h-file
2. compile source
3. see warnings "warning: comparison between signed and unsigned integer
expressions [-Wsign-compare]"
The following is generated:
void _memset(void *msg_ptr, char init_val, unsigned int size) {
int i;
for(i = 0; i < size; ++ i)
[...]
So we have a comparison between the unsingend int size and the int i;
Original issue reported on code.google.com by embed...@xyz.de on 28 Dec 2012 at 9:04
Original issue reported on code.google.com by
embed...@xyz.de
on 28 Dec 2012 at 9:04