mirror of
https://github.com/glest/glest-source.git
synced 2025-09-25 23:19:07 +02:00
- cleaned up a whole pile of compiler warnings
This commit is contained in:
@@ -53,7 +53,7 @@ void Checksum::addSum(int32 value) {
|
||||
}
|
||||
|
||||
void Checksum::addString(const string &value){
|
||||
for(int i= 0; i<value.size(); ++i){
|
||||
for(unsigned int i= 0; i<value.size(); ++i){
|
||||
addByte(value[i]);
|
||||
}
|
||||
}
|
||||
@@ -169,7 +169,7 @@ int32 Checksum::getFinalFileListSum() {
|
||||
}
|
||||
|
||||
int32 Checksum::getFileCount() {
|
||||
return fileList.size();
|
||||
return (int32)fileList.size();
|
||||
}
|
||||
|
||||
}}//end namespace
|
||||
|
Reference in New Issue
Block a user