1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2014-12-12 10:25:06 -08:00
parent 7c2e81a8f6
commit 5aa786349f

View file

@ -70,7 +70,7 @@ public interface IASTLiteralExpression extends IASTExpression {
public static final int lk_nullptr = 7;
/**
* Get the literal expression kind.
* Returns the literal expression kind.
*/
public int getKind();
@ -88,12 +88,12 @@ public interface IASTLiteralExpression extends IASTExpression {
public String toString();
/**
* Set the literal expression kind.
* Sets the literal expression kind.
*/
public void setKind(int value);
/**
* Provide the value for the expression.
* Provides the value for the expression.
* @since 5.1
*/
public void setValue(char[] value);