Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
william-dawson committed Apr 7, 2023
1 parent 768569a commit 72f621f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Fortran/PMatrixMemoryPoolModule.F90
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ MODULE PMatrixMemoryPoolModule
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
INTERFACE ConstructMatrixMemoryPool
MODULE PROCEDURE ConstructMatrixMemoryPool_p
END INTERFACE
END INTERFACE ConstructMatrixMemoryPool
INTERFACE DestructMatrixMemoryPool
MODULE PROCEDURE DestructMatrixMemoryPool_p
END INTERFACE DestructMatrixMemoryPool
Expand Down
2 changes: 1 addition & 1 deletion Source/Wrapper/SMatrixModule_wrp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ SUBROUTINE ConstructMatrixFromTripletList_lsr_wrp(ih_this, &

h_triplet_list = TRANSFER(ih_triplet_list,h_triplet_list)
ALLOCATE(h_this%DATA)
CALL ConstructMatrixFromTripletList(h_this%data, h_triplet_list%DATA, &
CALL ConstructMatrixFromTripletList(h_this%DATA, h_triplet_list%DATA, &
& rows, columns)
ih_this = TRANSFER(h_this,ih_this)
END SUBROUTINE ConstructMatrixFromTripletList_lsr_wrp
Expand Down

0 comments on commit 72f621f

Please sign in to comment.