Skip to content

Commit 96f6990

Browse files
committed
clang-format
1 parent 561c7eb commit 96f6990

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/include/llvm/Support/Mustache.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,16 @@ class ASTNode {
130130
InvertSection,
131131
};
132132

133-
ASTNode() : T(Type::Root), ParentContext(nullptr){};
133+
ASTNode() : T(Type::Root), ParentContext(nullptr) {};
134134

135135
ASTNode(StringRef Body, ASTNode *Parent)
136136
: T(Type::Text), Body(Body), Parent(Parent), ParentContext(nullptr),
137-
Indentation(0){};
137+
Indentation(0) {};
138138

139139
// Constructor for Section/InvertSection/Variable/UnescapeVariable
140140
ASTNode(Type T, Accessor Accessor, ASTNode *Parent)
141141
: T(T), Parent(Parent), Children({}), Accessor(Accessor),
142-
ParentContext(nullptr), Indentation(0){};
142+
ParentContext(nullptr), Indentation(0) {};
143143

144144
void addChild(ASTNode *Child) { Children.emplace_back(Child); };
145145

0 commit comments

Comments
 (0)