intent(out) specifier for getXX functions

This commit is contained in:
Martin Diehl 2014-12-18 18:26:16 +00:00
parent fdbaf00fa7
commit 7fe20fe805
1 changed files with 4 additions and 4 deletions

View File

@ -1873,9 +1873,9 @@ subroutine constitutive_getAccumulatedSlip(nSlip,accumulatedSlip,ipc, ip, el)
implicit none
real(pReal), dimension(:), allocatable :: &
real(pReal), dimension(:), intent(out), allocatable :: &
accumulatedSlip
integer(pInt) :: &
integer(pInt), intent(out) :: &
nSlip
integer(pInt), intent(in) :: &
ipc, & !< grain number
@ -1936,9 +1936,9 @@ subroutine constitutive_getSlipRate(nSlip,slipRate,Lp,ipc, ip, el)
implicit none
real(pReal), dimension(:), allocatable :: &
real(pReal), dimension(:), intent(out), allocatable :: &
slipRate
integer(pInt) :: &
integer(pInt), intent(out) :: &
nSlip
real(pReal), intent(in), dimension(3,3) :: &
Lp !< plastic velocity gradient