From 31311d63dbb3a1392b4048f8eebae9cc3946a88e Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Wed, 16 May 2018 00:09:33 +0200 Subject: [PATCH] gfortran 8 was complaining, asigned pointer is not contiguous --- src/prec.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prec.f90 b/src/prec.f90 index f35735780..2cdc533b6 100644 --- a/src/prec.f90 +++ b/src/prec.f90 @@ -68,7 +68,7 @@ module prec nTrans = 0_pInt logical :: & nonlocal = .false. - real(pReal), pointer, dimension(:,:), contiguous :: & + real(pReal), pointer, dimension(:,:) :: & slipRate, & !< slip rate accumulatedSlip !< accumulated plastic slip end type