1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

Bug 380623. Incremented PDOM version since some database records

changed.
This commit is contained in:
Sergey Prigogin 2012-08-30 17:11:59 -07:00
parent a458844070
commit 482739f1b1

View file

@ -221,10 +221,11 @@ public class PDOM extends PlatformObject implements IPDOM {
* CDT 8.2 development (versions not supported on the 8.1.x branch) * CDT 8.2 development (versions not supported on the 8.1.x branch)
* 130.0 - Dependent expressions, bug 299911. * 130.0 - Dependent expressions, bug 299911.
* 131.0 - Dependent expressions part 2, 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 MIN_SUPPORTED_VERSION= version(132, 0);
private static final int MAX_SUPPORTED_VERSION= version(131, Short.MAX_VALUE); private static final int MAX_SUPPORTED_VERSION= version(132, Short.MAX_VALUE);
private static final int DEFAULT_VERSION = version(131, 0); private static final int DEFAULT_VERSION = version(132, 0);
private static int version(int major, int minor) { private static int version(int major, int minor) {
return (major << 16) + minor; return (major << 16) + minor;