mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bumped up PDOM version to trigger index rebuild. The rebuild is needed
to fix definition of int64_t and other types that depend on attributes.
This commit is contained in:
parent
357057ba14
commit
2edf81c8a3
1 changed files with 4 additions and 3 deletions
|
@ -214,10 +214,11 @@ public class PDOM extends PlatformObject implements IPDOM {
|
||||||
* 121.0 - Multiple variants of included header file, bug 197989.
|
* 121.0 - Multiple variants of included header file, bug 197989.
|
||||||
* 122.0 - Compacting strings
|
* 122.0 - Compacting strings
|
||||||
* 123.0 - Combined file size and encoding hash code.
|
* 123.0 - Combined file size and encoding hash code.
|
||||||
|
* 124.0 - GCC attributes and NO_RETURN flag for functions.
|
||||||
*/
|
*/
|
||||||
private static final int MIN_SUPPORTED_VERSION= version(123, 0);
|
private static final int MIN_SUPPORTED_VERSION= version(124, 0);
|
||||||
private static final int MAX_SUPPORTED_VERSION= version(123, Short.MAX_VALUE);
|
private static final int MAX_SUPPORTED_VERSION= version(124, Short.MAX_VALUE);
|
||||||
private static final int DEFAULT_VERSION = version(123, 0);
|
private static final int DEFAULT_VERSION = version(124, 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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue