Skip to content

Commit 459ae84

Browse files
committed
Merge branch 'workaround-GCC-recursive' into 'development'
Workaround gcc recursive See merge request damask/DAMASK!985
2 parents addae0a + e689d6b commit 459ae84

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/rotations.f90

+5-4
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ end function asMatrix
158158
!--------------------------------------------------------------------------------------------------
159159
! Initialize rotation from different representations.
160160
!--------------------------------------------------------------------------------------------------
161-
subroutine fromQuaternion(self,qu)
161+
! recursive: workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115348, but seems to cause no harm
162+
recursive subroutine fromQuaternion(self,qu)
162163

163164
class(tRotation), intent(out) :: self
164165
real(pREAL), dimension(4), intent(in) :: qu
@@ -170,7 +171,7 @@ subroutine fromQuaternion(self,qu)
170171

171172
end subroutine fromQuaternion
172173
!--------------------------------------------------------------------------------------------------
173-
subroutine fromEulers(self,eu,degrees)
174+
recursive subroutine fromEulers(self,eu,degrees)
174175

175176
class(tRotation), intent(out) :: self
176177
real(pREAL), dimension(3), intent(in) :: eu
@@ -188,7 +189,7 @@ subroutine fromEulers(self,eu,degrees)
188189

189190
end subroutine fromEulers
190191
!--------------------------------------------------------------------------------------------------
191-
subroutine fromAxisAngle(self,ax,degrees,P)
192+
recursive subroutine fromAxisAngle(self,ax,degrees,P)
192193

193194
class(tRotation), intent(out) :: self
194195
real(pREAL), dimension(4), intent(in) :: ax
@@ -211,7 +212,7 @@ subroutine fromAxisAngle(self,ax,degrees,P)
211212

212213
end subroutine fromAxisAngle
213214
!--------------------------------------------------------------------------------------------------
214-
subroutine fromMatrix(self,om)
215+
recursive subroutine fromMatrix(self,om)
215216

216217
class(tRotation), intent(out) :: self
217218
real(pREAL), dimension(3,3), intent(in) :: om

0 commit comments

Comments
 (0)