diff --git a/math/gfan/files/patch-src_gfanlib__matrix.h b/math/gfan/files/patch-src_gfanlib__matrix.h new file mode 100644 index 000000000000..68aa9e1afa0c --- /dev/null +++ b/math/gfan/files/patch-src_gfanlib__matrix.h @@ -0,0 +1,18 @@ +--- src/gfanlib_matrix.h.orig 2017-06-20 14:47:37 UTC ++++ src/gfanlib_matrix.h +@@ -115,6 +115,7 @@ template class Matrix{ (public) + p[i][j]=s*(q[i][j]); + return p; + } ++#if 0 + friend Matrix operator*(const Matrix& a, const Matrix& b) + { + assert(a.width==b.height); +@@ -123,6 +124,7 @@ template class Matrix{ (public) + ret[i]=a.vectormultiply(b.column(i)); + return ret.transposed(); + } ++#endif + /* template + Matrix(const Matrix& c):v(c.size()){ + for(int i=0;i