mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
fixed some warnings about mixing signed & unsigned integers
This commit is contained in:
parent
23c08a05de
commit
c49918ba8b
6 changed files with 9 additions and 9 deletions
|
@ -182,7 +182,7 @@ UDs UseDefs::PropagateUDs(const Stmt* s, UDs succ_UDs, const Stmt* succ_stmt, bo
|
|||
|
||||
const Stmt* succ;
|
||||
|
||||
if ( i == stmts.size() - 1 ) { // Very last statement.
|
||||
if ( i == int(stmts.size()) - 1 ) { // Very last statement.
|
||||
succ = succ_stmt;
|
||||
if ( successor2.find(s) != successor2.end() )
|
||||
successor2[s_i] = successor2[s];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue