Skip to content

Commit

Permalink
Per #2022, change else if to just if.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jun 14, 2022
1 parent c890509 commit ab5374c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libcode/vx_statistics/met_stats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1788,7 +1788,8 @@ void VL1L2Info::compute_stats() {

DIR_ABSERR.v = fabs(DIR_ERR.v);
}
else if(vacount > 0) {

if(vacount > 0) {

n = vacount;

Expand Down

0 comments on commit ab5374c

Please sign in to comment.