Fix compilation

Former-commit-id: d5ac6bb73615f7c9b068c1de2037dfeddc5c1b45
This commit is contained in:
Lynix
2016-03-02 16:53:20 +01:00
parent ad55ff159b
commit 192fccc634
6 changed files with 6 additions and 6 deletions

View File

@@ -1786,7 +1786,7 @@ std::ostream& operator<<(std::ostream& out, const Nz::Matrix4<T>& matrix)
*/
template<typename T>
Nz::Matrix4<T> operator*(T scale, const Nz::Matrix4& matrix)
Nz::Matrix4<T> operator*(T scale, const Nz::Matrix4<T>& matrix)
{
return matrix * scale;
}