Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Liu2011-07-21 17:32:29 +0000
committerVivian Kong2011-07-21 17:33:52 +0000
commitf32349a738936db399fe64cfbf9097f8707e2d34 (patch)
tree7b09193a4ab8490f9dfed3d27537ebf041f36d92 /xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc
parent1923edd05cbbd501492eb348b6eceb389e26b218 (diff)
downloadorg.eclipse.cdt-f32349a738936db399fe64cfbf9097f8707e2d34.tar.gz
org.eclipse.cdt-f32349a738936db399fe64cfbf9097f8707e2d34.tar.xz
org.eclipse.cdt-f32349a738936db399fe64cfbf9097f8707e2d34.zip
Bug 352758 - Update some private fields in some scanner parsers to
Diffstat (limited to 'xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc')
-rw-r--r--xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XlCSpecsConsoleParser.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XlCSpecsConsoleParser.java b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XlCSpecsConsoleParser.java
index 1cc771126da..d4fbeb094a5 100644
--- a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XlCSpecsConsoleParser.java
+++ b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XlCSpecsConsoleParser.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2010 IBM Corporation and others.
+ * Copyright (c) 2006, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -48,7 +48,7 @@ public class XlCSpecsConsoleParser implements IScannerInfoConsoleParser {
.compile("-(?:qgcc_c_stdinc|qc_stdinc|qgcc_cpp_stdinc|qcpp_stdinc)=(.*)"); //$NON-NLS-1$
// xlC compiler constants
- final static String [] compilerConstants = {
+ protected final static String [] compilerConstants = {
"__IBMCPP__", //$NON-NLS-1$
"__xlC__", //$NON-NLS-1$
"__IBMC__", //$NON-NLS-1$
@@ -57,11 +57,11 @@ public class XlCSpecsConsoleParser implements IScannerInfoConsoleParser {
private IProject fProject = null;
- private IScannerInfoCollector fCollector = null;
+ protected IScannerInfoCollector fCollector = null;
- private List<String> symbols = new ArrayList<String>();
+ protected List<String> symbols = new ArrayList<String>();
- private List<String> includes = new ArrayList<String>();
+ protected List<String> includes = new ArrayList<String>();
/*
* (non-Javadoc)

Back to the top