1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

Increase PDOM version to force rebuild for bug 549028

Change-Id: If18da2b194515c64351ed61b149593566afbc7d8
Signed-off-by: Marc-Andre Laperle <malaperle@gmail.com>
This commit is contained in:
Marc-Andre Laperle 2019-07-11 00:20:04 -04:00
parent 1ea6dac9af
commit cf9922cd2f

View file

@ -299,10 +299,13 @@ public class PDOM extends PlatformObject implements IPDOM {
* *
* CDT 9.8 development (version not supported on the 9.7.x branch) * CDT 9.8 development (version not supported on the 9.7.x branch)
* 214.0 - Noexcept specifier in CPPFunctionType, bug 545021 * 214.0 - Noexcept specifier in CPPFunctionType, bug 545021
*
* CDT 9.9 development (version not supported on the 9.8.x branch)
* 215.0 - Corruption due to wrong record size in field/variable template partial specialization, bug 549028.
*/ */
private static final int MIN_SUPPORTED_VERSION = version(214, 0); private static final int MIN_SUPPORTED_VERSION = version(215, 0);
private static final int MAX_SUPPORTED_VERSION = version(214, Short.MAX_VALUE); private static final int MAX_SUPPORTED_VERSION = version(215, Short.MAX_VALUE);
private static final int DEFAULT_VERSION = version(214, 0); private static final int DEFAULT_VERSION = version(215, 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;