Skip to content

Commit 095be49

Browse files
committed
refactor(to_cpp1): reorder arguments for better formatting
1 parent 89941d9 commit 095be49

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

source/to_cpp1.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1826,10 +1826,11 @@ class cppfront
18261826
}
18271827

18281828
if (
1829-
(add_move
1830-
|| add_forward
1831-
)
1832-
&& !add_this
1829+
!add_this
1830+
&& (
1831+
add_move
1832+
|| add_forward
1833+
)
18331834
)
18341835
{
18351836
printer.print_cpp2(")", n.position());

0 commit comments

Comments
 (0)