Skip to content

Commit c971250

Browse files
committed
C++: Fix imports.
1 parent 92f2602 commit c971250

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowNodes.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ private import SsaImpl as SsaImpl
1010
private import DataFlowImplCommon as DataFlowImplCommon
1111
private import codeql.util.Unit
1212
private import Node0ToString
13-
import ExprNodes
1413

1514
/**
1615
* A canonical representation of a field.
@@ -281,6 +280,8 @@ predicate conversionFlow(
281280
}
282281

283282
module Public {
283+
import ExprNodes
284+
284285
/**
285286
* A node in a data flow graph.
286287
*

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/PrintIRFieldFlowSteps.qll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ private import cpp
66
private import semmle.code.cpp.ir.IR
77
private import semmle.code.cpp.ir.dataflow.internal.DataFlowUtil
88
private import semmle.code.cpp.ir.dataflow.internal.DataFlowPrivate
9+
private import semmle.code.cpp.ir.dataflow.internal.DataFlowNodes
910
private import PrintIRUtilities
1011

1112
/** A property provider for local IR dataflow store steps. */

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/PrintIRUtilities.qll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ private import cpp
66
private import semmle.code.cpp.ir.IR
77
private import semmle.code.cpp.ir.dataflow.internal.DataFlowUtil
88
private import semmle.code.cpp.ir.dataflow.internal.DataFlowPrivate
9+
private import semmle.code.cpp.ir.dataflow.internal.DataFlowNodes
910

1011
private Instruction getInstruction(Node n, string stars) {
1112
result = [n.asInstruction(), n.(RawIndirectInstruction).getInstruction()] and

0 commit comments

Comments
 (0)