Browse Source

Removed unneeded friend declaration.

vectorfields
Vladimír Vondruš 14 years ago
parent
commit
070c4c1901
  1. 2
      src/Math/Matrix.h

2
src/Math/Matrix.h

@ -39,8 +39,6 @@ namespace Implementation {
template<size_t size, class T> class Matrix {
static_assert(size != 0, "Matrix cannot have zero elements");
friend class Matrix<size+1, T>; /* for ij() */
public:
const static size_t Size = size; /**< @brief %Matrix size */
typedef T Type; /**< @brief %Matrix data type */

Loading…
Cancel
Save