Skip to content

Commit

Permalink
Utilities/StaticAnalyzers: fix errors found in IB static analyzer jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
gartung committed Aug 11, 2022
1 parent c797f7f commit 05149d1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions Utilities/StaticAnalyzers/scripts/class-composition.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
if node in visited:
continue
visited.add(node)
stack = []
if node in Hdg:
stack = [(node, iter(Hdg[node]))]
if node in Idg:
Expand Down
1 change: 0 additions & 1 deletion Utilities/StaticAnalyzers/scripts/run_class_dumper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ sort -u < function-dumper.txt.unsorted > function-calls-db.txt
class-composition.py >classes.txt.inherits.unsorted
sort -u classes.txt.inherits.unsorted | grep -e"^class" | grep -v \'\' >classes.txt.inherits
sort -u classes.txt.inherits.unsorted | grep -v -e"^class" >classes.txt.inherits.extra
sort -u getparam-dumper.txt.unsorted | awk '{print $0"\n"}' >getparam-dumper.txt
cat classes.txt.inherits classes.txt.dumperft classes.txt.dumperct | grep -e"^class" | grep -v \'\' | sort -u >classes.txt
rm *.txt.*unsorted
classnames-extract.py
Expand Down

0 comments on commit 05149d1

Please sign in to comment.