diff --git a/m.cpp b/m.cpp index b5f7309..cc8c9ce 100644 --- a/m.cpp +++ b/m.cpp @@ -1,4 +1,4 @@ -template struct Matrix; +template struct Matrix; template struct Matrix { @@ -8,9 +8,9 @@ struct Matrix { inline T& operator[](unsigned i) { return data[i]; } }; -template -struct Matrix { - typedef typename Matrix::GenericDimType FirstDimType; +template +struct Matrix { + typedef typename Matrix::GenericDimType FirstDimType; typedef FirstDimType GenericDimType[FirstDim]; GenericDimType data;