summaryrefslogtreecommitdiff
path: root/community/qgo
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-10-17 14:16:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-10-17 14:16:38 +0000
commite1b3d592f43a99f4ed7c91971deda6ce8414dd69 (patch)
tree38fecdc19b201d4d28df13c22e9b3b45bb469e4b /community/qgo
parentd286d980d2ff42151e9bc81ec348c864c24f9cc4 (diff)
Mon Oct 17 14:16:38 UTC 2011
Diffstat (limited to 'community/qgo')
-rw-r--r--community/qgo/qgo-gcc43-iostream.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/community/qgo/qgo-gcc43-iostream.patch b/community/qgo/qgo-gcc43-iostream.patch
deleted file mode 100644
index 6cd9fc1ec..000000000
--- a/community/qgo/qgo-gcc43-iostream.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- qgo-1.5.4/src/matrix.cpp.orig 2008-02-15 16:47:04.000000000 -0500
-+++ qgo-1.5.4/src/matrix.cpp 2008-02-15 16:47:58.000000000 -0500
-@@ -5,7 +5,10 @@
- #include "matrix.h"
- #include <stdlib.h>
- #ifndef NO_DEBUG
--#include <iostream.h>
-+#include <iostream>
-+
-+using namespace std;
-+
- #endif
-
- Matrix::Matrix(int s)
---- qgo-1.5.4/src/tree.cpp.orig 2008-02-15 17:01:49.000000000 -0500
-+++ qgo-1.5.4/src/tree.cpp 2008-02-15 17:03:06.000000000 -0500
-@@ -5,7 +5,10 @@
- #include "tree.h"
- #include "move.h"
- #include "qgo.h"
--#include <iostream.h>
-+#include <iostream>
-+
-+using namespace std;
-+
- #include <qptrstack.h>
-
- Tree::Tree(int board_size)