I'm trying to switch from Turbo C++ to MSVC++, I've gotten most of the differences in coding and libraries worked out, though I keep getting this problem and I have tried to find a solution but I haven't been able to find one after 30 minutes of searching for it. I have various line of codes where I have for(I=0;I<Item.size();++I)
, and in every single line I have that it gives me the warning.
warning C4018: '<' : signed/unsigned mismatch
Though since it is only a warning, it runs fine, but am I doing something wrong or do you do it a different way in Visual C++?