@@ -158,7 +158,8 @@ end function asMatrix
158
158
!- -------------------------------------------------------------------------------------------------
159
159
! Initialize rotation from different representations.
160
160
!- -------------------------------------------------------------------------------------------------
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 )
162
163
163
164
class(tRotation), intent (out ) :: self
164
165
real (pREAL), dimension (4 ), intent (in ) :: qu
@@ -170,7 +171,7 @@ subroutine fromQuaternion(self,qu)
170
171
171
172
end subroutine fromQuaternion
172
173
!- -------------------------------------------------------------------------------------------------
173
- subroutine fromEulers (self ,eu ,degrees )
174
+ recursive subroutine fromEulers (self ,eu ,degrees )
174
175
175
176
class(tRotation), intent (out ) :: self
176
177
real (pREAL), dimension (3 ), intent (in ) :: eu
@@ -188,7 +189,7 @@ subroutine fromEulers(self,eu,degrees)
188
189
189
190
end subroutine fromEulers
190
191
!- -------------------------------------------------------------------------------------------------
191
- subroutine fromAxisAngle (self ,ax ,degrees ,P )
192
+ recursive subroutine fromAxisAngle (self ,ax ,degrees ,P )
192
193
193
194
class(tRotation), intent (out ) :: self
194
195
real (pREAL), dimension (4 ), intent (in ) :: ax
@@ -211,7 +212,7 @@ subroutine fromAxisAngle(self,ax,degrees,P)
211
212
212
213
end subroutine fromAxisAngle
213
214
!- -------------------------------------------------------------------------------------------------
214
- subroutine fromMatrix (self ,om )
215
+ recursive subroutine fromMatrix (self ,om )
215
216
216
217
class(tRotation), intent (out ) :: self
217
218
real (pREAL), dimension (3 ,3 ), intent (in ) :: om
0 commit comments