1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Bug 399147 - 'Find references' does not find using-declarations

Trigger index rebuild to rebuild corrupted binding reference lists.

Change-Id: I94a68fc260c8543840aa712efc97650152597a0a
This commit is contained in:
Sergey Prigogin 2017-02-08 18:56:39 -08:00
parent 5462bac381
commit a88b16d124

View file

@ -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;