Skip to content

Commit 8c8e4e9

Browse files
committed
Fix: erroneous optional attribute
1 parent 518341b commit 8c8e4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fpm/src/fpm_sources.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ subroutine add_executable_sources(sources,executables,is_test)
122122
! Only allow executables that are explicitly specified in manifest
123123
!
124124
type(srcfile_t), allocatable, intent(inout), target :: sources(:)
125-
class(executable_t), intent(in), optional :: executables(:)
125+
class(executable_t), intent(in) :: executables(:)
126126
logical, intent(in) :: is_test
127127

128128
integer :: i, j

0 commit comments

Comments
 (0)