Skip to content
This repository was archived by the owner on Oct 23, 2020. It is now read-only.

Remove excessive auto-inserted use statements #1208

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/core_atmosphere/mpas_atm_core_interface.F
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ module atm_core_interface

use mpas_attlist
use mpas_abort, only : mpas_dmpar_global_abort
use mpas_derived_types
use mpas_pool_routines
use mpas_dmpar
use mpas_io_units

contains

Expand Down
4 changes: 4 additions & 0 deletions src/core_init_atmosphere/mpas_init_atm_core_interface.F
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
module init_atm_core_interface

use mpas_attlist
use mpas_derived_types
use mpas_pool_routines
use mpas_dmpar
use mpas_io_units

contains

Expand Down
4 changes: 0 additions & 4 deletions src/tools/registry/gen_inc.c
Original file line number Diff line number Diff line change
Expand Up @@ -589,10 +589,6 @@ int parse_namelist_records_from_registry(ezxml_t registry)/*{{{*/

// Start defining new subroutine for namelist record.
fortprintf(fd, " subroutine %s_setup_nmlrec_%s(configPool, unitNumber, dminfo)\n", core_string, nmlrecname);
fortprintf(fd, " use mpas_derived_types\n");
fortprintf(fd, " use mpas_dmpar\n");
fortprintf(fd, " use mpas_pool_routines\n");
fortprintf(fd, " use mpas_io_units\n");
fortprintf(fd, " implicit none\n");
fortprintf(fd, " type (mpas_pool_type), intent(inout) :: configPool\n");
fortprintf(fd, " integer, intent(in) :: unitNumber\n");
Expand Down