1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-05-11 21:48:41 +03:00

Fix misleading indentation

Clang flags this formatting as misleading because it looks like the
'break' is part of the clause of the if-statement.
This commit is contained in:
Philip Chimento 2023-08-27 16:55:56 -07:00
parent 81bc47af7c
commit 6d8bc4a94c

View file

@ -883,7 +883,8 @@ capacity; and so is the number 0 itself.
(previous_token->eqn_type == OPEN_BRACKET_EQN))
token = Equations::enode_new_op(UNARY_MINUS_OPERATION);
else
token = Equations::enode_new_op(MINUS_OPERATION); break;
token = Equations::enode_new_op(MINUS_OPERATION);
break;
case '/': token = Equations::enode_new_op(DIVIDE_OPERATION); break;
case '*': token = Equations::enode_new_op(TIMES_OPERATION); break;
case '^': token = Equations::enode_new_op(POWER_OPERATION); break;