Skip to content

Commit 6de47d3

Browse files
committed
[clang-doc] status
1 parent 5cb8482 commit 6de47d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang-tools-extra/clang-doc/Mapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ bool MapASTVisitor::mapDecl(const T *D, bool IsDefinition) {
4646
// If there is an error generating a USR for the decl, skip this decl.
4747
if (index::generateUSRForDecl(D, USR))
4848
return true;
49-
5049
// Prevent Visiting USR twice
5150
{
5251
std::lock_guard<llvm::sys::Mutex> Guard(USRVisitedGuard);
@@ -57,7 +56,6 @@ bool MapASTVisitor::mapDecl(const T *D, bool IsDefinition) {
5756
if (IsDefinition)
5857
USRVisited.insert(Visited);
5958
}
60-
6159
bool IsFileInRootDir;
6260
llvm::SmallString<128> File =
6361
getFile(D, D->getASTContext(), CDCtx.SourceRoot, IsFileInRootDir);
@@ -145,5 +143,7 @@ llvm::SmallString<128> MapASTVisitor::getFile(const NamedDecl *D,
145143
return File;
146144
}
147145

146+
147+
148148
} // namespace doc
149149
} // namespace clang

0 commit comments

Comments
 (0)