Skip to content

Commit

Permalink
fix: gfan with clang 19 (fix #1259)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes14 committed Dec 18, 2024
1 parent db3e972 commit d3f7343
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gfanlib/gfanlib_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ template <class typ> class Matrix{
p[i][j]=s*(q[i][j]);
return p;
}
/*
friend Matrix operator*(const Matrix& a, const Matrix& b)
{
assert(a.width==b.height);
Expand All @@ -123,6 +124,7 @@ template <class typ> class Matrix{
ret[i]=a.vectormultiply(b.column(i));
return ret.transposed();
}
*/
/* template<class T>
Matrix<T>(const Matrix<T>& c):v(c.size()){
for(int i=0;i<size();i++)v[i]=typ(c[i]);}
Expand Down

0 comments on commit d3f7343

Please sign in to comment.