diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java index b758058f937..dce5d02d643 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java @@ -221,10 +221,11 @@ public class PDOM extends PlatformObject implements IPDOM { * CDT 8.2 development (versions not supported on the 8.1.x branch) * 130.0 - Dependent expressions, bug 299911. * 131.0 - Dependent expressions part 2, bug 299911. + * 132.0 - Explicit virtual overrides, bug 380623. */ - private static final int MIN_SUPPORTED_VERSION= version(131, 0); - private static final int MAX_SUPPORTED_VERSION= version(131, Short.MAX_VALUE); - private static final int DEFAULT_VERSION = version(131, 0); + private static final int MIN_SUPPORTED_VERSION= version(132, 0); + private static final int MAX_SUPPORTED_VERSION= version(132, Short.MAX_VALUE); + private static final int DEFAULT_VERSION = version(132, 0); private static int version(int major, int minor) { return (major << 16) + minor;