mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics
This commit is contained in:
parent
ad1fb3be6c
commit
3ee8c20153
1 changed files with 11 additions and 19 deletions
|
@ -6,9 +6,9 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* QNX - Initial API and implementation
|
||||
* IBM Corporation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* QNX - Initial API and implementation
|
||||
* IBM Corporation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.pdom.dom.cpp;
|
||||
|
||||
|
@ -22,7 +22,6 @@ import org.eclipse.core.runtime.CoreException;
|
|||
|
||||
/**
|
||||
* @author Doug Schaefer
|
||||
*
|
||||
*/
|
||||
class PDOMCPPField extends PDOMCPPVariable implements ICPPField {
|
||||
|
||||
|
@ -35,13 +34,11 @@ class PDOMCPPField extends PDOMCPPVariable implements ICPPField {
|
|||
super(linkage, bindingRecord);
|
||||
}
|
||||
|
||||
// @Override
|
||||
@Override
|
||||
protected int getRecordSize() {
|
||||
return RECORD_SIZE;
|
||||
}
|
||||
|
||||
// @Override
|
||||
@Override
|
||||
public int getNodeType() {
|
||||
return IIndexCPPBindingConstants.CPPFIELD;
|
||||
|
@ -57,33 +54,28 @@ class PDOMCPPField extends PDOMCPPVariable implements ICPPField {
|
|||
return PDOMCPPAnnotation.getVisibility(getByte(record + ANNOTATIONS));
|
||||
}
|
||||
|
||||
// @Override
|
||||
@Override
|
||||
public boolean isMutable() {
|
||||
return getBit(getByte(record + ANNOTATIONS), PDOMCPPAnnotation.MUTABLE_OFFSET);
|
||||
}
|
||||
|
||||
// @Override
|
||||
@Override
|
||||
public boolean isAuto() {
|
||||
// ISO/IEC 14882:2003 9.2.6
|
||||
return false;
|
||||
}
|
||||
|
||||
// @Override
|
||||
@Override
|
||||
public boolean isExtern() {
|
||||
// ISO/IEC 14882:2003 9.2.6
|
||||
return false;
|
||||
}
|
||||
|
||||
// @Override
|
||||
@Override
|
||||
public boolean isExternC() {
|
||||
return false;
|
||||
}
|
||||
|
||||
// @Override
|
||||
@Override
|
||||
public boolean isRegister() {
|
||||
// ISO/IEC 14882:2003 9.2.6
|
||||
|
|
Loading…
Add table
Reference in a new issue