Skip to content

Commit

Permalink
Fix Vararg warning
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed May 9, 2024
1 parent e460923 commit 75a2af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/convergence_condition.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ struct MultipleConditions{CC, C} <: ConvergenceCondition
conditions::C
function MultipleConditions(
condition_combiner::Union{typeof(all), typeof(any)},
conditions::Vararg{<:ConvergenceCondition},
conditions::Vararg{ConvergenceCondition},
)
return new{typeof(condition_combiner), typeof(conditions)}(condition_combiner, conditions)
end
Expand Down

0 comments on commit 75a2af0

Please sign in to comment.