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:
parent
a458844070
commit
482739f1b1
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue