From 47f38381671e03455eab193a1d3a88e11666af99 Mon Sep 17 00:00:00 2001 From: Victor Popkov Date: Sun, 29 Mar 2020 21:40:04 +0300 Subject: [PATCH] Small fix of the KTools::inverseOf() return type --- src/common/algebra.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/algebra.hpp b/src/common/algebra.hpp index 334d8c4..382145f 100644 --- a/src/common/algebra.hpp +++ b/src/common/algebra.hpp @@ -399,7 +399,7 @@ namespace KTools { } template - inline void inverseOf(const ProjectiveMatrix<2, T>& M) { + inline ProjectiveMatrix<2, T> inverseOf(const ProjectiveMatrix<2, T>& M) { ProjectiveMatrix<2, T> N(M); invert(N); return N;