1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2010-05-12 06:26:04 +00:00
parent 207ec8f911
commit 65d630c31c

View file

@ -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;
}