Fixed compiler problem with anyProp var.
svn-id: r33489
This commit is contained in:
parent
9bd3b07647
commit
262cc33dc7
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ bool XMLParser::parseActiveKey(bool closed) {
|
|||
return parserError("Missing required property '%s' inside key '%s'", i->name.c_str(), key->name.c_str());
|
||||
}
|
||||
|
||||
if (key->layout.anyProps == false && localMap.empty() == false)
|
||||
if (key->layout->anyProps == false && localMap.empty() == false)
|
||||
return parserError("Unhandled property inside key '%s': '%s'", key->name.c_str(), localMap.begin()->_key.c_str());
|
||||
|
||||
// check if any of the parents must be ignored.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue