mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +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:
parent
1ea6dac9af
commit
cf9922cd2f
1 changed files with 6 additions and 3 deletions
|
@ -299,10 +299,13 @@ public class PDOM extends PlatformObject implements IPDOM {
|
|||
*
|
||||
* CDT 9.8 development (version not supported on the 9.7.x branch)
|
||||
* 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 MAX_SUPPORTED_VERSION = version(214, Short.MAX_VALUE);
|
||||
private static final int DEFAULT_VERSION = version(214, 0);
|
||||
private static final int MIN_SUPPORTED_VERSION = version(215, 0);
|
||||
private static final int MAX_SUPPORTED_VERSION = version(215, Short.MAX_VALUE);
|
||||
private static final int DEFAULT_VERSION = version(215, 0);
|
||||
|
||||
private static int version(int major, int minor) {
|
||||
return (major << 16) + minor;
|
||||
|
|
Loading…
Add table
Reference in a new issue