I have a bunch of browser warnings and I am not sure if I should ignore them or if they actually are warning about improper logic, take a look...
yields...Code:vector <int> tlist; for(int i = 0; i < tlist.size(); i++)
warning C4018: '<' :signed/unsigned mismatch
yields...Code:vector<Truck> t; int pastdue = (t[i].getMilesTillS()).find("Due");
warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data
yields...Code:string stringtext; int length = stringtext.length();
warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data



LinkBack URL
About LinkBacks


