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
Fortitude could warn when a named constant in declared in one line and set in another, as is done for i below.
implicit noneinteger:: i
parameter (i =1) ! named constant set on different line than its declaration -- warn about this
integer, parameter:: j =1 ! preferable
print*,i,j
end
The text was updated successfully, but these errors were encountered:
Fortitude could warn when a named constant in declared in one line and set in another, as is done for
i
below.The text was updated successfully, but these errors were encountered: