We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2512403 commit 08fa314Copy full SHA for 08fa314
cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll
@@ -249,11 +249,11 @@ abstract class PostUpdateNode extends InstructionNode {
249
* setY(&x); // a partial definition of the object `x`.
250
* ```
251
*/
252
-abstract class PartialDefinitionNode extends PostUpdateNode, TInstructionNode {
+abstract private class PartialDefinitionNode extends PostUpdateNode, TInstructionNode {
253
abstract Expr getDefinedExpr();
254
}
255
256
-class ExplicitFieldStoreQualifierNode extends PartialDefinitionNode {
+private class ExplicitFieldStoreQualifierNode extends PartialDefinitionNode {
257
override ChiInstruction instr;
258
FieldAddressInstruction field;
259
0 commit comments