Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/PDOM.java9
1 files 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;

Back to the top