1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 09:45:39 +02:00

Fixed another "unsafe method call" exception.

Change-Id: I9080867272856acfd7af0e6790a6c81000cc25f1
Signed-off-by: Nathan Ridge <zeratul976@hotmail.com>
Reviewed-on: https://git.eclipse.org/r/14854
Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
IP-Clean: Sergey Prigogin <eclipse.sprigogin@gmail.com>
Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
This commit is contained in:
Nathan Ridge 2013-07-24 20:50:42 -04:00 committed by Sergey Prigogin
parent 3e84751400
commit edd31ce10c

View file

@ -617,7 +617,7 @@ public class ClassTypeHelper {
if (visitedBefore != null)
return visitedBefore;
ICPPMethod[] methods= classType.getDeclaredMethods();
ICPPMethod[] methods= ClassTypeHelper.getDeclaredMethods(classType, point);
ICPPMethod candidate= null;
boolean hasOverridden= false;
for (ICPPMethod method : methods) {