mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
Cosmetics.
This commit is contained in:
parent
207ec8f911
commit
65d630c31c
1 changed files with 22 additions and 22 deletions
|
@ -25,11 +25,10 @@ import org.eclipse.cdt.internal.core.dom.parser.ITypeMarshalBuffer;
|
|||
import org.eclipse.core.runtime.CoreException;
|
||||
|
||||
public class CQualifierType implements ICQualifierType, ITypeContainer, ISerializableType {
|
||||
|
||||
private boolean isConst;
|
||||
private boolean isVolatile;
|
||||
private boolean isRestrict;
|
||||
private IType type = null;
|
||||
private IType type;
|
||||
|
||||
/**
|
||||
* CQualifierType has an IBasicType to keep track of the basic type information.
|
||||
|
@ -114,6 +113,7 @@ public class CQualifierType implements ICQualifierType, ITypeContainer, ISeriali
|
|||
public IType getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(IType t) {
|
||||
type = t;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue