Skip to content

Commit dd9d7bb

Browse files
committed
Run nix fmt
1 parent d276cd9 commit dd9d7bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libnixt/include/nixt/Visitor.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ template <class Derived> struct RecursiveASTVisitor {
8989
bool RecursiveASTVisitor<Derived>::traverse##TYPE(const nix::TYPE *T) { \
9090
if (!getDerived().shouldTraversePostOrder()) \
9191
TRY_TO(visit##TYPE(T)); \
92-
{ CODE; } \
92+
{ \
93+
CODE; \
94+
} \
9395
if (getDerived().shouldTraversePostOrder()) \
9496
TRY_TO(visit##TYPE(T)); \
9597
return true; \

0 commit comments

Comments
 (0)