Fix T38887: error in (still unused) freestyle math function implementation.

This commit is contained in:
Brecht Van Lommel 2014-02-28 18:15:24 +01:00
parent 7f24b34dcc
commit da5e6b98c9
Notes: blender-bot 2023-02-14 11:06:12 +01:00
Referenced by issue #38887, blender-2.69/source/blender/freestyle/intern/geometry/VecMat.h:707]: (error) Reference to auto variable returned.
Referenced by issue #38887, blender-2.69/source/blender/freestyle/intern/geometry/VecMat.h:707]: (error) Reference to auto variable returned.
1 changed files with 2 additions and 1 deletions

View File

@ -704,7 +704,8 @@ public:
for (unsigned int j = 0; j < N; j++)
res(j, i) = this->_coord[i * N + j];
}
return res;
*this = res;
return *this;
}
template <class U>