diff options
-rw-r--r-- | fpm/src/fpm_compiler.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpm/src/fpm_compiler.f90 b/fpm/src/fpm_compiler.f90 index a16baa3..2dd520f 100644 --- a/fpm/src/fpm_compiler.f90 +++ b/fpm/src/fpm_compiler.f90 @@ -8,7 +8,7 @@ subroutine add_compile_flag_defaults(build_name,compiler,model) ! Choose compile flags based on cli settings & manifest inputs character(len=*),intent(in) :: build_name, compiler -type(fpm_model_t) :: model +type(fpm_model_t), intent(inout) :: model ! could just be a function to return a string instead of passing model ! but likely to change other components like matching C compiler |