mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
fix problem with sets overloaded operators not having ambiguities resolved
This commit is contained in:
parent
46d3f69877
commit
8e3e261e91
1 changed files with 5 additions and 0 deletions
|
@ -1720,6 +1720,11 @@ public class CPPSemantics {
|
|||
mergeResults( data, bindings, false );
|
||||
items = (Object[]) data.foundItems;
|
||||
continue;
|
||||
} else if( temp instanceof CPPCompositeBinding ){
|
||||
IBinding [] bindings = ((CPPCompositeBinding)temp).getBindings();
|
||||
mergeResults( data, bindings, false );
|
||||
items = (Object[]) data.foundItems;
|
||||
continue;
|
||||
} else if( temp instanceof IType ){
|
||||
if( type == null ){
|
||||
type = temp;
|
||||
|
|
Loading…
Add table
Reference in a new issue