1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Adjusted Javadocs.

Change-Id: I91da69eba36c8ee554eff369d89cb0a9848559b1
This commit is contained in:
Sergey Prigogin 2016-10-11 13:43:38 -07:00 committed by Gerrit Code Review @ Eclipse.org
parent 30b3165eb3
commit 2a7e9108dc

View file

@ -19,12 +19,12 @@ import org.eclipse.cdt.core.dom.ast.IVariable;
*/
public interface ICPPVariable extends IVariable, ICPPBinding {
/**
* does this variable have the mutable storage class specifier
* Checks whether this variable has the mutable storage class specifier.
*/
public boolean isMutable();
/**
* Returns whether this variable is declared as extern "C".
* Checks whether this variable is declared as extern "C".
*/
public boolean isExternC();
}