From 8c8e4e9ec834c4a08078eb82a685fc001baa89aa Mon Sep 17 00:00:00 2001 From: LKedward Date: Tue, 8 Sep 2020 10:51:42 +0100 Subject: Fix: erroneous optional attribute --- fpm/src/fpm_sources.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpm/src/fpm_sources.f90 b/fpm/src/fpm_sources.f90 index d743006..99652e7 100644 --- a/fpm/src/fpm_sources.f90 +++ b/fpm/src/fpm_sources.f90 @@ -122,7 +122,7 @@ subroutine add_executable_sources(sources,executables,is_test) ! Only allow executables that are explicitly specified in manifest ! type(srcfile_t), allocatable, intent(inout), target :: sources(:) - class(executable_t), intent(in), optional :: executables(:) + class(executable_t), intent(in) :: executables(:) logical, intent(in) :: is_test integer :: i, j -- cgit v1.2.3