Try to use the new LookupContext.

This commit is contained in:
Roberto Raggi
2010-05-05 12:06:38 +02:00
parent 66a9ef0725
commit d9527680a9
14 changed files with 325 additions and 446 deletions

View File

@@ -47,7 +47,7 @@ public:
typedef QList< QPair<const Identifier *, FullySpecifiedType> > Substitution;
public:
GenTemplateInstance(const DeprecatedLookupContext &context, const Substitution &substitution);
GenTemplateInstance(Control *control, const Substitution &substitution);
FullySpecifiedType operator()(Symbol *symbol);
@@ -55,7 +55,7 @@ public:
private:
Symbol *_symbol;
DeprecatedLookupContext _context;
Control *_control;
const Substitution _substitution;
};