Skip to content

Commit 895efce

Browse files
authored
Resolve a conflict
1 parent 0bbc668 commit 895efce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

clang/lib/Serialization/ASTReader.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7463,9 +7463,8 @@ void TypeLocReader::VisitPredefinedSugarTypeLoc(PredefinedSugarTypeLoc TL) {
74637463
TL.setNameLoc(readSourceLocation());
74647464
}
74657465

7466-
void ASTRecordReader::readTypeLoc(TypeLoc TL, LocSeq *ParentSeq) {
7467-
LocSeq::State Seq(ParentSeq);
7468-
TypeLocReader TLR(*this, Seq);
7466+
void ASTRecordReader::readTypeLoc(TypeLoc TL) {
7467+
TypeLocReader TLR(*this);
74697468
for (; !TL.isNull(); TL = TL.getNextTypeLoc())
74707469
TLR.Visit(TL);
74717470
}

0 commit comments

Comments
 (0)