Skip to content

Commit 3d832b9

Browse files
committed
comments
1 parent f41096a commit 3d832b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Sema/SemaOpenMP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22819,7 +22819,7 @@ class GlobalDeclRefChecker final : public StmtVisitor<GlobalDeclRefChecker> {
2281922819
void declareTargetInitializer(Decl *TD) {
2282022820
A = TD->getAttr<OMPDeclareTargetDeclAttr>();
2282122821
DeclVector.push_back(cast<VarDecl>(TD));
22822-
llvm::DenseSet<Decl *> Visited;
22822+
llvm::SmallDenseSet<Decl *> Visited;
2282322823
while (!DeclVector.empty()) {
2282422824
VarDecl *TargetVarDecl = DeclVector.pop_back_val();
2282522825
if (!Visited.insert(TargetVarDecl).second)

0 commit comments

Comments
 (0)