Skip to content

Commit d03b5bc

Browse files
committed
C++: Fix non-private imports.
1 parent 9c0be34 commit d03b5bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp/ql/src/semmle/code/cpp/rangeanalysis/NanAnalysis.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import cpp
2-
import semmle.code.cpp.rangeanalysis.RangeSSA
2+
private import semmle.code.cpp.rangeanalysis.RangeSSA
33

44
/**
55
* Holds if `guard` won't return the value `polarity` when either

cpp/ql/src/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import cpp
4545
private import RangeAnalysisUtils
4646
import RangeSSA
4747
import SimpleRangeAnalysisCached
48-
import NanAnalysis
48+
private import NanAnalysis
4949

5050
/**
5151
* This fixed set of lower bounds is used when the lower bounds of an

0 commit comments

Comments
 (0)