1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

oops... fix ArrayIndexOutOfBoundException

This commit is contained in:
Andrew Niefer 2005-03-22 20:03:47 +00:00
parent a2ed1fa490
commit 5a64d3581a

View file

@ -108,5 +108,5 @@ public interface IProblemBinding extends IBinding, IScope, IType {
*/
public static final int SEMANTIC_INVALID_REDECLARATION = 0x00C;
public static final int LAST_PROBLEM = SEMANTIC_BAD_SCOPE;
public static final int LAST_PROBLEM = SEMANTIC_INVALID_REDECLARATION;
}