Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
LGTM with comments.
| clang/lib/Serialization/ASTReader.cpp | ||
|---|---|---|
| 10020 | DiffType is not necessary here, right? | |
Comment Actions
Thanks for the review!
| clang/lib/Serialization/ASTReader.cpp | ||
|---|---|---|
| 10020 | Unfortunately, it is necessary. A little bit later we have if (DiffType == EndOfClass && Tag) where we use DiffType. By the way, the implementation isn't really correct for EndOfClass and non-TagDecl as Loc remains invalid. But that's a separate issue, I've decided to keep the current change to NFC. | |
| clang/lib/Serialization/ASTReader.cpp | ||
|---|---|---|
| 10020 | Oh, sorry for I missed that. Thanks! | |
DiffType is not necessary here, right?