From cf9922cd2fd83c37cfe3d95ac6cf331520228f7d Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Thu, 11 Jul 2019 00:20:04 -0400 Subject: [PATCH] Increase PDOM version to force rebuild for bug 549028 Change-Id: If18da2b194515c64351ed61b149593566afbc7d8 Signed-off-by: Marc-Andre Laperle --- .../parser/org/eclipse/cdt/internal/core/pdom/PDOM.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java index f395ea5d343..086d14bb9d7 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java @@ -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;