From 879ce079a30d2ea6ad109da49a59ce8233a76abb Mon Sep 17 00:00:00 2001 From: Hossein Pourbozorg Date: Thu, 30 Nov 2023 18:39:34 +0330 Subject: [PATCH] fix a missing --- src/problems/bvp_problems.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problems/bvp_problems.jl b/src/problems/bvp_problems.jl index 7d1ff6d53d..8dbf9712d4 100644 --- a/src/problems/bvp_problems.jl +++ b/src/problems/bvp_problems.jl @@ -6,7 +6,7 @@ struct StandardBVProblem <: AbstractProblemType end """ $(TYPEDEF) """ -struct TwoPointBVProblem{iip} end # The iip is needed to make type stable construction easier +struct TwoPointBVProblem{iip} <: AbstractProblemType end # The iip is needed to make type stable construction easier @doc doc"""