From 641956d09e97ae90f7c37bbea6c95457ef82b3cf Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sun, 15 Feb 2009 20:31:04 +0000 Subject: [PATCH] Changed DEFAULT_FILES_TO_PARSE_UP_FRONT from "cstdarg, cstddef, ctime" to "cstdarg, cstdio, ctime" to fix resolution of fopen, fgets, fprintf, etc. --- .../cdt/internal/core/pdom/indexer/IndexerPreferences.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/indexer/IndexerPreferences.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/indexer/IndexerPreferences.java index 6745b0e0ecc..ced40784d7d 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/indexer/IndexerPreferences.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/indexer/IndexerPreferences.java @@ -56,7 +56,7 @@ public class IndexerPreferences { 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_FILES_TO_PARSE_UP_FRONT= "cstdarg, cstddef, ctime"; //$NON-NLS-1$ + private static final String DEFAULT_FILES_TO_PARSE_UP_FRONT= "cstdarg, cstdio, ctime"; //$NON-NLS-1$ private static final int DEFAULT_UPDATE_POLICY= 0; private static final String QUALIFIER = CCorePlugin.PLUGIN_ID;