From 264a95da6ce03ee236d7036af260022e3c007895 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Mon, 24 Nov 2014 18:17:18 -0800 Subject: [PATCH] Bug 450888. Trigger index rebuild since storing of source files changed. --- .../parser/org/eclipse/cdt/internal/core/pdom/PDOM.java | 5 +++-- 1 file changed, 3 insertions(+), 2 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 5c0e2fe5814..149c120db37 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 @@ -256,10 +256,11 @@ public class PDOM extends PlatformObject implements IPDOM { * CDT 8.6 development (versions not supported on the 8.5.x branch) * 180.0 - Internal types of enumerators, bug 446711. * 180.1 - Storing types of unknown members, bug 447728. + * 180.2 - Do not apply significant macros to source files, bug 450888. */ - private static final int MIN_SUPPORTED_VERSION= version(180, 1); + private static final int MIN_SUPPORTED_VERSION= version(180, 2); private static final int MAX_SUPPORTED_VERSION= version(180, Short.MAX_VALUE); - private static final int DEFAULT_VERSION = version(180, 1); + private static final int DEFAULT_VERSION = version(180, 2); private static int version(int major, int minor) { return (major << 16) + minor;