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

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>