Fixing an obvious typo in override code. I do not know whether it works correctly after the change, but at least it ca nbe compiled now.

This commit is contained in:
Michael Raskin 2008-08-14 22:01:43 +00:00
parent ca07f3e370
commit b7ff182b6e
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ LocalNoInline(ATerm expandRec(EvalState & state, ATerm e, ATermList rbnds, ATerm
ATermMap overrides;
if (eOverrides) {
eOverrides = evalExpr(state, eOverrides);
queryAllAttrs(overrides, overrides, false);
queryAllAttrs(eOverrides, overrides, false);
foreach (ATermMap::const_iterator, i, overrides)
subs.set(i->key, i->value);
}