- attempt to switch CRC to use unsigned int everywhere

This commit is contained in:
Mark Vejvoda
2012-07-07 02:46:57 +00:00
parent bf0e76c5e7
commit 4202989014
24 changed files with 327 additions and 225 deletions

View File

@@ -787,6 +787,10 @@ int XmlAttribute::getIntValue() const {
return strToInt(value);
}
uint32 XmlAttribute::getUIntValue() const {
return strToUInt(value);
}
int XmlAttribute::getIntValue(int min, int max) const {
int i= strToInt(value);
if(i<min || i>max){