Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
ef605df9
Commit
ef605df9
authored
Oct 16, 2009
by
Roberto Raggi
Browse files
Renamed Instantiation.
parent
bb7e17ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libs/cplusplus/ResolveExpression.cpp
View file @
ef605df9
...
...
@@ -51,14 +51,14 @@ namespace {
typedef
QList
<
QPair
<
Name
*
,
FullySpecifiedType
>
>
Substitution
;
class
Instantiation
:
protected
TypeVisitor
,
protected
NameVisitor
class
GenerateInstance
:
protected
TypeVisitor
,
protected
NameVisitor
{
Control
*
_control
;
FullySpecifiedType
_type
;
const
Substitution
_substitution
;
public:
Instantiation
(
Control
*
control
,
const
Substitution
&
substitution
)
GenerateInstance
(
Control
*
control
,
const
Substitution
&
substitution
)
:
_control
(
control
),
_substitution
(
substitution
)
{
}
...
...
@@ -807,7 +807,7 @@ ResolveExpression::resolveMember(Name *memberName, Class *klass,
templArgTy
));
}
Instantiation
inst
(
control
(),
subst
);
GenerateInstance
inst
(
control
(),
subst
);
ty
=
inst
(
ty
);
}
...
...
@@ -842,7 +842,7 @@ ResolveExpression::resolveArrowOperator(const Result &,
templArgTy
));
}
}
Instantiation
inst
(
control
(),
subst
);
GenerateInstance
inst
(
control
(),
subst
);
ty
=
inst
(
ty
);
}
...
...
@@ -880,7 +880,7 @@ ResolveExpression::resolveArrayOperator(const Result &,
templArgTy
));
}
}
Instantiation
inst
(
control
(),
subst
);
GenerateInstance
inst
(
control
(),
subst
);
ty
=
inst
(
ty
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment