diff --git a/src/Math/Matrix.h b/src/Math/Matrix.h index c74f37e68..2a1a121e5 100644 --- a/src/Math/Matrix.h +++ b/src/Math/Matrix.h @@ -133,7 +133,7 @@ template class Matrix { /** @brief Transposed matrix */ Matrix transposed() const { - Matrix out; + Matrix out(false); for(size_t row = 0; row != size; ++row) { for(size_t col = 0; col != size; ++col)