From 54a56e5d5023ca8eabb9908f0b017d5c91457384 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 15 Aug 2016 17:46:13 +1000 Subject: [PATCH] matrix: reduce use of indented namespacing --- matrix.cpp | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/matrix.cpp b/matrix.cpp index 10eb2787..939c92af 100644 --- a/matrix.cpp +++ b/matrix.cpp @@ -418,16 +418,14 @@ matrix::ZEROES { 0 }; //----------------------------------------------------------------------------- -namespace util { - template struct matrix<2,float>; - template struct matrix<2,double>; +template struct util::matrix<2,float>; +template struct util::matrix<2,double>; - template struct matrix<3,float>; - template struct matrix<3,double>; +template struct util::matrix<3,float>; +template struct util::matrix<3,double>; - template struct matrix<4,float>; - template struct matrix<4,double>; -} +template struct util::matrix<4,float>; +template struct util::matrix<4,double>; ///////////////////////////////////////////////////////////////////////////////