Skip to content

Commit

Permalink
Merge pull request #116 from BerkeleyLab/remove-module-keyword
Browse files Browse the repository at this point in the history
Remove module keyword from abstract interface
  • Loading branch information
rouson authored Jan 24, 2024
2 parents 4c375ae + 2a8d1c1 commit 1cc3b41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/inference_engine/activation_strategy_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ elemental function activation_i(x) result(y)
real(rkind) y
end function

elemental module function function_name_i() result(string)
elemental function function_name_i() result(string)
import string_t
implicit none
type(string_t) string
end function
Expand Down

0 comments on commit 1cc3b41

Please sign in to comment.