Skip to content

Commit

Permalink
RandomExtensions.make: avoid self-recursion (#1533)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Sep 11, 2023
1 parent 5781497 commit c8ae666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flint/fmpz_laurent_series.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ function RandomExtensions.make(S::ZZLaurentSeriesRing, val_range::AbstractUnitRa
if length(vs) == 1 && elem_type(R) == Random.gentype(vs[1])
RandomExtensions.Make(S, val_range, vs[1]) # forward to default Make constructor
else
make(S, val_range, make(R, vs...))
RandomExtensions.Make(S, val_range, make(R, vs...))
end
end

Expand Down

0 comments on commit c8ae666

Please sign in to comment.