mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-16 04:35:45 +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;
|
import org.eclipse.core.runtime.CoreException;
|
||||||
|
|
||||||
public class CQualifierType implements ICQualifierType, ITypeContainer, ISerializableType {
|
public class CQualifierType implements ICQualifierType, ITypeContainer, ISerializableType {
|
||||||
|
|
||||||
private boolean isConst;
|
private boolean isConst;
|
||||||
private boolean isVolatile;
|
private boolean isVolatile;
|
||||||
private boolean isRestrict;
|
private boolean isRestrict;
|
||||||
private IType type = null;
|
private IType type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CQualifierType has an IBasicType to keep track of the basic type information.
|
* 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() {
|
public IType getType() {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setType(IType t) {
|
public void setType(IType t) {
|
||||||
type = t;
|
type = t;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue