Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yutannihilation committed Mar 27, 2024
1 parent 68755e9 commit 0f5eef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion savvy-bindgen/src/gen/templates/lib_rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fn int_times_int(x: IntegerSexp, y: i32) -> savvy::Result<savvy::Sexp> {

for (i, e) in x.iter().enumerate() {
if e.is_na() {
out.set_na(i);
out.set_na(i)?;
} else {
out[i] = e * y;
}
Expand Down

0 comments on commit 0f5eef1

Please sign in to comment.