Skip to content

Commit 26099d6

Browse files
committed
remove more upper-case variable names
1 parent df5178d commit 26099d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp/ql/src/Architecture/General Class-Level Information/HubClasses.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ import cpp
1212

1313
from Class c
1414
where c.fromSource()
15-
select c as Class, c.getMetrics().getAfferentCoupling() as afferentCoupling,
15+
select c as class_, c.getMetrics().getAfferentCoupling() as afferentCoupling,
1616
c.getMetrics().getEfferentSourceCoupling() as efferentCoupling order by afferentCoupling desc

cpp/ql/src/PointsTo/TaintedFormatStrings.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ predicate potentialViolation(InputBuffer source, FormatBuffer dest) {
119119

120120
from InputBuffer source, FormatBuffer dest
121121
where potentialViolation(source, dest)
122-
select dest.getFile() as File, dest as FormatString
122+
select dest.getFile() as file, dest as formatString

0 commit comments

Comments
 (0)