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