mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-27 19:05:38 +02:00
Cosmetics.
This commit is contained in:
parent
99cdc84b19
commit
b2e2842a39
1 changed files with 7 additions and 7 deletions
|
@ -6,10 +6,10 @@
|
||||||
* http://www.eclipse.org/legal/epl-v10.html
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* John Camelon (IBM) - Initial API and implementation
|
* John Camelon (IBM) - Initial API and implementation
|
||||||
* Bryan Wilkinson (QNX)
|
* Bryan Wilkinson (QNX)
|
||||||
* Markus Schorn (Wind River Systems)
|
* Markus Schorn (Wind River Systems)
|
||||||
* Jens Elmenthaler - http://bugs.eclipse.org/173458 (camel case completion)
|
* Jens Elmenthaler - http://bugs.eclipse.org/173458 (camel case completion)
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||||
|
|
||||||
|
@ -53,13 +53,13 @@ import org.eclipse.core.runtime.Assert;
|
||||||
* Qualified name, which can contain any other name (unqualified, operator-name, conversion name,
|
* Qualified name, which can contain any other name (unqualified, operator-name, conversion name,
|
||||||
* template id).
|
* template id).
|
||||||
*/
|
*/
|
||||||
public class CPPASTQualifiedName extends CPPASTNameBase
|
public class CPPASTQualifiedName extends CPPASTNameBase
|
||||||
implements ICPPASTQualifiedName, ICPPASTCompletionContext {
|
implements ICPPASTQualifiedName, ICPPASTCompletionContext {
|
||||||
|
private IASTName[] names;
|
||||||
private IASTName[] names = null;
|
|
||||||
private int namesPos= -1;
|
private int namesPos= -1;
|
||||||
private boolean isFullyQualified;
|
private boolean isFullyQualified;
|
||||||
private char[] signature;
|
private char[] signature;
|
||||||
|
|
||||||
public CPPASTQualifiedName() {
|
public CPPASTQualifiedName() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue