mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 301366 - [formatter] throw; invalidates indenting rules
This commit is contained in:
parent
c107c6f6c3
commit
5cf3cf47c2
1 changed files with 5 additions and 3 deletions
|
@ -2057,10 +2057,12 @@ public class CodeFormatterVisitor extends CPPASTVisitor {
|
||||||
break;
|
break;
|
||||||
case IASTUnaryExpression.op_throw:
|
case IASTUnaryExpression.op_throw:
|
||||||
scribe.printNextToken(Token.t_throw, scribe.printComment());
|
scribe.printNextToken(Token.t_throw, scribe.printComment());
|
||||||
|
if (operand != null) {
|
||||||
if (peekNextToken() != Token.tLPAREN) {
|
if (peekNextToken() != Token.tLPAREN) {
|
||||||
scribe.space();
|
scribe.space();
|
||||||
}
|
}
|
||||||
operand.accept(this);
|
operand.accept(this);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case IASTUnaryExpression.op_typeid:
|
case IASTUnaryExpression.op_typeid:
|
||||||
scribe.printNextToken(Token.t_typeid, scribe.printComment());
|
scribe.printNextToken(Token.t_typeid, scribe.printComment());
|
||||||
|
|
Loading…
Add table
Reference in a new issue