From d029f228bb7f11a6e0ccb9dd24ac70f7bd203d00 Mon Sep 17 00:00:00 2001 From: Tilman Keskinoz Date: Sun, 23 Mar 2003 23:15:26 +0000 Subject: Update to 0.9.1. --- math/graphthing/files/patch-src-matrix.cc | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 math/graphthing/files/patch-src-matrix.cc (limited to 'math/graphthing/files/patch-src-matrix.cc') diff --git a/math/graphthing/files/patch-src-matrix.cc b/math/graphthing/files/patch-src-matrix.cc deleted file mode 100644 index 09aa7e748f47..000000000000 --- a/math/graphthing/files/patch-src-matrix.cc +++ /dev/null @@ -1,19 +0,0 @@ ---- src/matrix.cc.orig Fri Oct 25 16:02:15 2002 -+++ src/matrix.cc Fri Oct 25 15:58:21 2002 -@@ -166,14 +166,14 @@ - { - unsigned int i, j; - -- o << '/' << string (mat.rep->columns * 2, '-') << "-\\\n"; -+ o << '/' << std::string (mat.rep->columns * 2, '-') << "-\\\n"; - for (j = 0; j < mat.rep->rows; ++j) { - o << "| "; - for (i = 0; i < mat.rep->columns; ++i) - o << mat (i, j) << ' '; - o << "|\n"; - } -- o << '\\' << string (mat.rep->columns * 2, '-') << "-/\n"; -+ o << '\\' << std::string (mat.rep->columns * 2, '-') << "-/\n"; - - return o; - } -- cgit v1.2.3