mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 01:25:23 +02:00
Bug 395884 - Fixed yet another bug introduced in the previous commit.
This commit is contained in:
parent
b7643e8b81
commit
2c0a41d671
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ public class EvalBinding extends CPPEvaluation {
|
||||||
*/
|
*/
|
||||||
public ICPPFunction getParameterOwner() {
|
public ICPPFunction getParameterOwner() {
|
||||||
if (fParameterOwner == null && fBinding instanceof ICPPParameter) {
|
if (fParameterOwner == null && fBinding instanceof ICPPParameter) {
|
||||||
IBinding owner = ((CPPParameter) fBinding).getOwner();
|
IBinding owner = fBinding.getOwner();
|
||||||
if (owner instanceof ICPPFunction)
|
if (owner instanceof ICPPFunction)
|
||||||
fParameterOwner = (ICPPFunction) owner;
|
fParameterOwner = (ICPPFunction) owner;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue