1
0
forked from 0ad/0ad

Should fix the Atlas build issues with the autobuilder.

For some reason the autobuilder does not know uint32_t but my Windows
system with VC2010 and my Linux system both do.

Refs #2434

This was SVN commit r14797.
This commit is contained in:
Yves 2014-03-01 14:41:32 +00:00
parent c2c172271f
commit e290abc40f

View File

@ -154,7 +154,7 @@ json_spirit::Value BuildJSONNode(AtNode::Ptr p)
AtNode::child_maptype::const_iterator lower = p->children.lower_bound("item");
AtNode::child_maptype::const_iterator upper = p->children.upper_bound("item");
uint32_t idx = 0;
unsigned int idx = 0;
for (AtNode::child_maptype::const_iterator it = lower; it != upper; ++it)
{
json_spirit::Value child = BuildJSONNode(it->second);