Skip to content

Commit d362b5a

Browse files
committed
C++: StdSet should be private as well.
1 parent df91b81 commit d362b5a

File tree

1 file changed

+1
-1
lines changed
  • cpp/ql/src/semmle/code/cpp/models/implementations

1 file changed

+1
-1
lines changed

cpp/ql/src/semmle/code/cpp/models/implementations/StdSet.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import semmle.code.cpp.models.interfaces.Iterator
88
/**
99
* An instantiation of `std::set` or `std::unordered_set`.
1010
*/
11-
class StdSet extends ClassTemplateInstantiation {
11+
private class StdSet extends ClassTemplateInstantiation {
1212
StdSet() { this.hasQualifiedName(["std", "bsl"], ["set", "unordered_set"]) }
1313
}
1414

0 commit comments

Comments
 (0)