diff options
author | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-08 10:51:42 +0100 |
---|---|---|
committer | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-08 10:51:42 +0100 |
commit | 8c8e4e9ec834c4a08078eb82a685fc001baa89aa (patch) | |
tree | 4f114e964b86a6a24782d4991ebb68318a23058e | |
parent | 518341b67b6063181c79b473595ef27b35ee2f62 (diff) | |
download | fpm-8c8e4e9ec834c4a08078eb82a685fc001baa89aa.tar.gz fpm-8c8e4e9ec834c4a08078eb82a685fc001baa89aa.zip |
Fix: erroneous optional attribute
-rw-r--r-- | fpm/src/fpm_sources.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
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 |