diff --git a/glm/gtx/matrix_factorisation.inl b/glm/gtx/matrix_factorisation.inl index 7f2418c0..90fb7857 100644 --- a/glm/gtx/matrix_factorisation.inl +++ b/glm/gtx/matrix_factorisation.inl @@ -16,7 +16,7 @@ namespace glm template class matType> GLM_FUNC_QUALIFIER matType fliplr(matType const& in) { - matType out; + matType out(uninitialize); for (length_t i = 0; i < C; i++) { out[i] = in[(C - i) - 1];