1
0
Fork 0
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:
Andrew Niefer 2005-06-09 19:55:30 +00:00
parent 46d3f69877
commit 8e3e261e91

View file

@ -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;