1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +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:
Sergey Prigogin 2012-04-18 13:50:51 -07:00
parent 357057ba14
commit 2edf81c8a3

View file

@ -214,10 +214,11 @@ public class PDOM extends PlatformObject implements IPDOM {
* 121.0 - Multiple variants of included header file, bug 197989.
* 122.0 - Compacting strings
* 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 MAX_SUPPORTED_VERSION= version(123, Short.MAX_VALUE);
private static final int DEFAULT_VERSION = version(123, 0);
private static final int MIN_SUPPORTED_VERSION= version(124, 0);
private static final int MAX_SUPPORTED_VERSION= version(124, Short.MAX_VALUE);
private static final int DEFAULT_VERSION = version(124, 0);
private static int version(int major, int minor) {
return (major << 16) + minor;