You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The module procedures within an interface are declared as public along with the interface in field_manager and fm_util . For example,
public test
public test_integer
public test_real
interface test
module procedure test_integer
module procedure test_real
end interface test
The above should be
public test
interface test
module procedure test_integer
module procedure test_real
end interface test
Describe the solution you'd like
Cleanup of the interfaces in FMS
Describe alternatives you've considered
Additional context
In order to make FMS more perfect
The text was updated successfully, but these errors were encountered:
mlee03
added
the
enhancement
Issue/PR for a modification that increases performance, improves syntax, or adds functionality.
label
Jun 5, 2023
Is your feature request related to a problem? Please describe.
The module procedures within an interface are declared as public along with the interface in field_manager and fm_util . For example,
The above should be
Describe the solution you'd like
Cleanup of the interfaces in FMS
Describe alternatives you've considered
Additional context
In order to make FMS more perfect
The text was updated successfully, but these errors were encountered: