Skip to content

Commit

Permalink
fixed possible undefined variable assigment (#6985)
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalBrilling committed Nov 10, 2023
1 parent 0556059 commit aa9c791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/math/polynomial/polynomial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5648,7 +5648,7 @@ namespace polynomial {
unsigned d0 = 0;
unsigned d1 = n1 - n2;
unsigned i = 1;
unsigned n3;
unsigned n3 = 0;
S.reset();
while (true) {
// Compute Gh_{i+2}
Expand Down

0 comments on commit aa9c791

Please sign in to comment.