From ced088f6b85a980ec5183e2125fcf4e5fd51ce2a Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 11 Oct 2016 20:51:49 +1100 Subject: [PATCH] matrix: instantiate free function transposition --- matrix.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/matrix.cpp b/matrix.cpp index bd21403b..9a502932 100644 --- a/matrix.cpp +++ b/matrix.cpp @@ -145,6 +145,11 @@ util::transposed (const matrix &m) } +//----------------------------------------------------------------------------- +template matrix3f util::transposed (const matrix3f&); +template matrix4f util::transposed (const matrix4f&); + + /////////////////////////////////////////////////////////////////////////////// template matrix