Skip to content

Commit b58fbcb

Browse files
committed
[llvm] remove unused mustache member
1 parent e73454d commit b58fbcb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/Support/Mustache.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,12 @@ class ASTNode {
134134

135135
ASTNode(StringRef Body, ASTNode *Parent)
136136
: T(Type::Text), Body(Body), Parent(Parent), ParentContext(nullptr),
137-
LocalContext(nullptr), 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), LocalContext(nullptr), Indentation(0) {};
142+
ParentContext(nullptr), Indentation(0) {};
143143

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

0 commit comments

Comments
 (0)