We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bbc668 commit 895efceCopy full SHA for 895efce
clang/lib/Serialization/ASTReader.cpp
@@ -7463,9 +7463,8 @@ void TypeLocReader::VisitPredefinedSugarTypeLoc(PredefinedSugarTypeLoc TL) {
7463
TL.setNameLoc(readSourceLocation());
7464
}
7465
7466
-void ASTRecordReader::readTypeLoc(TypeLoc TL, LocSeq *ParentSeq) {
7467
- LocSeq::State Seq(ParentSeq);
7468
- TypeLocReader TLR(*this, Seq);
+void ASTRecordReader::readTypeLoc(TypeLoc TL) {
+ TypeLocReader TLR(*this);
7469
for (; !TL.isNull(); TL = TL.getNextTypeLoc())
7470
TLR.Visit(TL);
7471
0 commit comments