summaryrefslogtreecommitdiff
path: root/games/znibbles/files/patch-src__Base.H
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-04-12 15:05:30 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-04-12 15:05:30 +0000
commit40be09797f0af784ada0362b0eb1dce0d05f4a96 (patch)
tree8b29a9508d622ca7a85234c5d0844d04003ddef8 /games/znibbles/files/patch-src__Base.H
parentUnbreak. (diff)
Unbreak.
Regen patches. PR: 208709 Submitted by: tkato432 yahoo com Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=413126
Diffstat (limited to 'games/znibbles/files/patch-src__Base.H')
-rw-r--r--games/znibbles/files/patch-src__Base.H31
1 files changed, 0 insertions, 31 deletions
diff --git a/games/znibbles/files/patch-src__Base.H b/games/znibbles/files/patch-src__Base.H
deleted file mode 100644
index 0ca0d53c5be2..000000000000
--- a/games/znibbles/files/patch-src__Base.H
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/Base.H Wed May 12 11:40:22 1999
-+++ src/Base.H Sat Oct 26 00:30:09 2002
-@@ -32,7 +32,7 @@
- #define __H_BASE__
-
-
--#include <iostream.h>
-+#include <iostream>
-
-
- // #define DEBUG
-@@ -55,8 +55,8 @@
- inline ~Base()
- {
- total--;
-- cout << " <" << id << "/" << global_id
-- << " deleted><left=" << total << "> " << endl;
-+ std::cout << " <" << id << "/" << global_id
-+ << " deleted><left=" << total << "> " << std::endl;
- }
- #else
-
-@@ -65,7 +65,7 @@
-
- #endif
-
-- void display() { cout << "ID: " << id << endl; }
-+ void display() { std::cout << "ID: " << id << std::endl; }
-
- private:
- static int global_id;