Fixed/added namespace ending comments using clang-tidy. NFC
The patch is generated using this command:
$ tools/extra/clang-tidy/tool/run-clang-tidy.py -fix \
-checks=-*,llvm-namespace-comment -header-filter='llvm/.*|clang/.*' \
work/llvm/tools/clang
To reduce churn, not touching namespaces spanning less than 10 lines.
llvm-svn: 240270
This commit is contained in:
@@ -44,7 +44,7 @@ public:
|
||||
void sortWorklist();
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
void DataflowWorklist::enqueueBlock(const clang::CFGBlock *block) {
|
||||
if (block && !enqueuedBlocks[block->getBlockID()]) {
|
||||
@@ -106,7 +106,7 @@ public:
|
||||
DSetFact(false), // This is a *major* performance win.
|
||||
killAtAssign(KillAtAssign) {}
|
||||
};
|
||||
}
|
||||
} // namespace
|
||||
|
||||
static LiveVariablesImpl &getImpl(void *x) {
|
||||
return *((LiveVariablesImpl *) x);
|
||||
@@ -135,7 +135,7 @@ namespace {
|
||||
}
|
||||
return A;
|
||||
}
|
||||
}
|
||||
} // namespace
|
||||
|
||||
void LiveVariables::Observer::anchor() { }
|
||||
|
||||
@@ -212,7 +212,7 @@ public:
|
||||
void VisitUnaryOperator(UnaryOperator *UO);
|
||||
void Visit(Stmt *S);
|
||||
};
|
||||
}
|
||||
} // namespace
|
||||
|
||||
static const VariableArrayType *FindVA(QualType Ty) {
|
||||
const Type *ty = Ty.getTypePtr();
|
||||
|
||||
Reference in New Issue
Block a user