From 070c4c1901e5453b4bed0e066c7c99afef84c025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 22 Aug 2012 11:08:37 +0200 Subject: [PATCH] Removed unneeded friend declaration. --- src/Math/Matrix.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Math/Matrix.h b/src/Math/Matrix.h index 263185396..1e7f0a4c6 100644 --- a/src/Math/Matrix.h +++ b/src/Math/Matrix.h @@ -39,8 +39,6 @@ namespace Implementation { template class Matrix { static_assert(size != 0, "Matrix cannot have zero elements"); - friend class Matrix; /* for ij() */ - public: const static size_t Size = size; /**< @brief %Matrix size */ typedef T Type; /**< @brief %Matrix data type */