updated for vc++ 2012 x64 compile

This commit is contained in:
Mark Vejvoda
2013-11-03 01:51:20 +00:00
parent 651edc6f1c
commit 8b5e681ae5
13 changed files with 51 additions and 51 deletions

View File

@@ -720,7 +720,7 @@ bool XmlNode::hasAttribute(const string &name) const {
int XmlNode::clearChild(const string &childName) {
int clearChildCount = 0;
for(int i = children.size()-1; i >= 0; --i) {
for(int i = (int)children.size()-1; i >= 0; --i) {
if(children[i]->getName() == childName) {
delete children[i];
children.erase(children.begin()+i);