mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-29 20:05:35 +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 );
|
mergeResults( data, bindings, false );
|
||||||
items = (Object[]) data.foundItems;
|
items = (Object[]) data.foundItems;
|
||||||
continue;
|
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 ){
|
} else if( temp instanceof IType ){
|
||||||
if( type == null ){
|
if( type == null ){
|
||||||
type = temp;
|
type = temp;
|
||||||
|
|
Loading…
Add table
Reference in a new issue