From a88b16d12425bcf39bda230d3ba193838b57ce54 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Wed, 8 Feb 2017 18:56:39 -0800 Subject: [PATCH] Bug 399147 - 'Find references' does not find using-declarations Trigger index rebuild to rebuild corrupted binding reference lists. Change-Id: I94a68fc260c8543840aa712efc97650152597a0a --- .../parser/org/eclipse/cdt/internal/core/pdom/PDOM.java | 7 ++++--- 1 file changed, 4 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 8c59bcc439d..ef8800afafb 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 @@ -283,10 +283,11 @@ public class PDOM extends PlatformObject implements IPDOM { * * CDT 9.3 development (versions not supported on the 9.2.x branch) * 207.0 - Store a caller record for macro reference names. + * 208.0 - Trigger index rebuild to rebuild corrupted binding reference lists, bug 399147. */ - private static final int MIN_SUPPORTED_VERSION= version(207, 0); - private static final int MAX_SUPPORTED_VERSION= version(207, Short.MAX_VALUE); - private static final int DEFAULT_VERSION = version(207, 0); + private static final int MIN_SUPPORTED_VERSION= version(208, 0); + private static final int MAX_SUPPORTED_VERSION= version(208, Short.MAX_VALUE); + private static final int DEFAULT_VERSION = version(208, 0); private static int version(int major, int minor) { return (major << 16) + minor;