Skip to content
This repository was archived by the owner on Jun 20, 2019. It is now read-only.

Commit d219cbf

Browse files
committed
De-tabify the frontend sources
1 parent 0898f59 commit d219cbf

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

gcc/d/dfrontend/expressionsem.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -981,15 +981,15 @@ class ExpressionSemanticVisitor : public Visitor
981981
return;
982982
}
983983

984-
// Bugzilla 11581: With the syntax `new T[edim]` or `thisexp.new T[edim]`,
985-
// T should be analyzed first and edim should go into arguments iff it's
986-
// not a tuple.
987-
Expression *edim = NULL;
988-
if (!exp->arguments && exp->newtype->ty == Tsarray)
989-
{
990-
edim = ((TypeSArray *)exp->newtype)->dim;
991-
exp->newtype = ((TypeNext *)exp->newtype)->next;
992-
}
984+
// Bugzilla 11581: With the syntax `new T[edim]` or `thisexp.new T[edim]`,
985+
// T should be analyzed first and edim should go into arguments iff it's
986+
// not a tuple.
987+
Expression *edim = NULL;
988+
if (!exp->arguments && exp->newtype->ty == Tsarray)
989+
{
990+
edim = ((TypeSArray *)exp->newtype)->dim;
991+
exp->newtype = ((TypeNext *)exp->newtype)->next;
992+
}
993993

994994
ClassDeclaration *cdthis = NULL;
995995
if (exp->thisexp)

0 commit comments

Comments
 (0)