Skip to content

Commit

Permalink
refactor(src): remove unused variables (#366)
Browse files Browse the repository at this point in the history
* update mkdist.py to copy additional MSVS solutions and projects
  • Loading branch information
langevin-usgs authored Mar 27, 2020
1 parent b0a4aff commit 758cb11
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion distribution/mkdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,8 +580,11 @@ def update_latex_releaseinfo():

# Copy the Visual Studio solution and project files
flist = [
# os.path.join('..', 'msvs', 'mf6.sln'),
os.path.join('..', 'msvs', 'mf6.sln'),
os.path.join('..', 'msvs', 'mf6.vfproj'),
os.path.join('..', 'msvs', 'mf6core.vfproj'),
os.path.join('..', 'msvs', 'mf6bmi.sln'),
os.path.join('..', 'msvs', 'mf6bmi.vfproj'),
]
print('Copying msvs files')
for d in flist:
Expand Down
1 change: 0 additions & 1 deletion src/Model/GroundWaterFlow/gwf3disu8.f90
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,6 @@ subroutine nodeu_to_array(this, nodeu, arr)
! -- local
character(len=LINELENGTH) :: errmsg
integer(I4B) :: isize
integer(I4B) :: i, j, k
! ------------------------------------------------------------------------------
!
! -- check the size of arr
Expand Down
2 changes: 1 addition & 1 deletion src/mf6core.f90
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ subroutine Mf6Finalize()
use ListsModule, only: lists_da
use MemoryManagerModule, only: mem_usage, mem_da
use TimerModule, only: elapsed_time
use SimVariablesModule, only: istdout, iout
use SimVariablesModule, only: iout
use SimulationCreateModule, only: simulation_cr, simulation_da
use TdisModule, only: tdis_tu, tdis_da
use SimModule, only: final_message
Expand Down

0 comments on commit 758cb11

Please sign in to comment.