aboutsummaryrefslogtreecommitdiff
path: root/math/graphthing/files/patch-src-matrix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'math/graphthing/files/patch-src-matrix.cc')
-rw-r--r--math/graphthing/files/patch-src-matrix.cc19
1 files changed, 0 insertions, 19 deletions
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;
- }