File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
cpp/ql/src/semmle/code/cpp/models/implementations Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,16 @@ import semmle.code.cpp.models.interfaces.Taint
77/**
88 * An instantiation of `std::pair<T1, T2>`.
99 */
10- class StdPair extends ClassTemplateInstantiation {
10+ private class StdPair extends ClassTemplateInstantiation {
1111 StdPair ( ) { this .hasQualifiedName ( [ "std" , "bsl" ] , "pair" ) }
1212}
1313
14+ /**
15+ * DEPRECATED: This is now called `StdPair` and is a private part of the
16+ * library implementation.
17+ */
18+ deprecated class StdPairClass = StdPair ;
19+
1420/**
1521 * Any of the single-parameter constructors of `std::pair` that takes a reference to an
1622 * instantiation of `std::pair`. These constructors allow conversion between pair types when the
You can’t perform that action at this time.
0 commit comments