Proper return type

This commit is contained in:
Jack Andersen 2016-07-04 12:50:00 -10:00
parent e3ce2fde12
commit 7d8796a676
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ CMatrix3f CMatrix3f::transposedSSE3() const
CMatrix4f CMatrix4f::transposedSSE3() const
{
CMatrix3f ret;
CMatrix4f ret;
#if __SSE__
__m128 T0 = _mm_unpacklo_ps(vec[0].mVec128, vec[1].mVec128);
__m128 T2 = _mm_unpacklo_ps(vec[2].mVec128, vec[3].mVec128);