-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for maybe-unitialized gfortran errors
It looks like gfortran does not like optional arrays to have an undetermined dimension, so I changed a bunch of "dimension(:)" attributes to "dimension(size(other_variable))". There was also a private routine in cvmix_io that should only be called if you've compiled with netcdf that was kicking off a "routine defined but never called" warning when I built without netcdf... so I moved the "#ifdef _NETCDF" to include the entire routine.
- Loading branch information
1 parent
7552fd6
commit bccd414
Showing
3 changed files
with
18 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters