1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

bug 147080 - stack overflow errors

This commit is contained in:
Andrew Niefer 2006-06-23 19:03:18 +00:00
parent d359b44186
commit aca80b97db

View file

@ -109,7 +109,7 @@ abstract public class CPPScope implements ICPPScope{
} else if( obj instanceof IASTName ){
IBinding binding = null;
if( forceResolve && obj != name && obj != name.getParent())
binding = ((IASTName)obj).resolveBinding();
binding = CPPSemantics.resolveAmbiguities(name, new Object[] { obj });
else {
IASTName n = (IASTName) obj;
if( n instanceof ICPPASTQualifiedName ){