1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Added sys/resource.h to files to parse up front.

This commit is contained in:
Sergey Prigogin 2009-03-26 05:47:42 +00:00
parent f0bc570599
commit 40a308476b

View file

@ -56,7 +56,9 @@ public class IndexerPreferences {
private static final String KEY_INDEX_IMPORT_LOCATION = "indexImportLocation"; //$NON-NLS-1$ private static final String KEY_INDEX_IMPORT_LOCATION = "indexImportLocation"; //$NON-NLS-1$
private static final String DEFAULT_INDEX_IMPORT_LOCATION = ".settings/cdt-index.zip"; //$NON-NLS-1$ private static final String DEFAULT_INDEX_IMPORT_LOCATION = ".settings/cdt-index.zip"; //$NON-NLS-1$
private static final String DEFAULT_FILES_TO_PARSE_UP_FRONT= "cstdarg, cstdio, ctime, stdarg.h, stddef.h, sys/types.h"; //$NON-NLS-1$ // See https://bugs.eclipse.org/bugs/show_bug.cgi?id=259843 for the rationale.
private static final String DEFAULT_FILES_TO_PARSE_UP_FRONT=
"cstdarg, cstdio, sys/resource.h, ctime, stdarg.h, stddef.h, sys/types.h"; //$NON-NLS-1$
private static final int DEFAULT_UPDATE_POLICY= 0; private static final int DEFAULT_UPDATE_POLICY= 0;
private static final String QUALIFIER = CCorePlugin.PLUGIN_ID; private static final String QUALIFIER = CCorePlugin.PLUGIN_ID;