Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/NonlinearSolveBase/src/abstract_types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ function reinit! end
function reinit_self! end

function reinit!(x::Any; kwargs...)
@debug "`InternalAPI.reinit!` is not implemented for $(typeof(x))."
#@debug "`InternalAPI.reinit!` is not implemented for $(typeof(x))."
return
end
function reinit_self!(x::Any; kwargs...)
@debug "`InternalAPI.reinit_self!` is not implemented for $(typeof(x))."
#@debug "`InternalAPI.reinit_self!` is not implemented for $(typeof(x))."
return
end

Expand Down
Loading