Skip to content

Commit 454b04d

Browse files
committed
Recover required return statement.
1 parent 5ef43d3 commit 454b04d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Core/Libraries/Source/WWVegas/WWMath/matrix3d.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ void Matrix3D::Multiply(const Matrix3D & A,const Matrix3D & B,Matrix3D * set_res
741741
(*set_res)[0][3] = (*Aptr)[0][0]*tmp1 + (*Aptr)[0][1]*tmp2 + (*Aptr)[0][2]*tmp3 + (*Aptr)[0][3];
742742
(*set_res)[1][3] = (*Aptr)[1][0]*tmp1 + (*Aptr)[1][1]*tmp2 + (*Aptr)[1][2]*tmp3 + (*Aptr)[1][3];
743743
(*set_res)[2][3] = (*Aptr)[2][0]*tmp1 + (*Aptr)[2][1]*tmp2 + (*Aptr)[2][2]*tmp3 + (*Aptr)[2][3];
744+
745+
return;
744746
}
745747
*/
746748

0 commit comments

Comments
 (0)