mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 380623. Incremented PDOM version since some database records
changed.
This commit is contained in:
parent
5731f25e50
commit
8478c43043
1 changed files with 4 additions and 3 deletions
|
@ -218,10 +218,11 @@ public class PDOM extends PlatformObject implements IPDOM {
|
|||
* 124.0 - GCC attributes and NO_RETURN flag for functions.
|
||||
* #125.0# - Indexes for unresolved includes and files indexed with I/O errors. <<CDT 8.1>>
|
||||
* 126.0 - Dependent expressions, bug 299911.
|
||||
* 127.0 - Explicit virtual overrides, bug 380623.
|
||||
*/
|
||||
private static final int MIN_SUPPORTED_VERSION= version(126, 0);
|
||||
private static final int MAX_SUPPORTED_VERSION= version(126, Short.MAX_VALUE);
|
||||
private static final int DEFAULT_VERSION = version(126, 0);
|
||||
private static final int MIN_SUPPORTED_VERSION= version(127, 0);
|
||||
private static final int MAX_SUPPORTED_VERSION= version(127, Short.MAX_VALUE);
|
||||
private static final int DEFAULT_VERSION = version(127, 0);
|
||||
|
||||
private static int version(int major, int minor) {
|
||||
return (major << 16) + minor;
|
||||
|
|
Loading…
Add table
Reference in a new issue