1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-15 04:05:38 +02:00

Updated visibility of particular parser components.

This commit is contained in:
John Camelon 2004-10-20 15:01:41 +00:00
parent e6c2b40bdc
commit 2f84ab8078
3 changed files with 4 additions and 4 deletions

View file

@ -4315,7 +4315,7 @@ public class Parser implements IParserData, IParser
* This class represents the state and strategy for parsing * This class represents the state and strategy for parsing
* declarationSpecifierSequences * declarationSpecifierSequences
*/ */
public class Flags public static class Flags
{ {
private boolean encounteredTypename = false; private boolean encounteredTypename = false;
// have we encountered a typeName yet? // have we encountered a typeName yet?

View file

@ -15,7 +15,7 @@ import java.util.Collections;
import java.util.List; import java.util.List;
final class TemplateParameterManager public final class TemplateParameterManager
{ {
protected void reset() protected void reset()
{ {

View file

@ -34,7 +34,7 @@ public class TypeId implements IDeclarator
/** /**
* @param scope2 * @param scope2
*/ */
void reset(IASTScope s) { public void reset(IASTScope s) {
this.scope = s; this.scope = s;
arrayModifiers = Collections.EMPTY_LIST; arrayModifiers = Collections.EMPTY_LIST;
pointerOperators = Collections.EMPTY_LIST; pointerOperators = Collections.EMPTY_LIST;
@ -43,7 +43,7 @@ public class TypeId implements IDeclarator
/** /**
* *
*/ */
TypeId() public TypeId()
{ {
reset( null ); reset( null );
} }