summaryrefslogtreecommitdiff
path: root/games/seahaven/files/patch-auto-C
diff options
context:
space:
mode:
Diffstat (limited to 'games/seahaven/files/patch-auto-C')
-rw-r--r--games/seahaven/files/patch-auto-C25
1 files changed, 0 insertions, 25 deletions
diff --git a/games/seahaven/files/patch-auto-C b/games/seahaven/files/patch-auto-C
deleted file mode 100644
index 367490bfb0ed..000000000000
--- a/games/seahaven/files/patch-auto-C
+++ /dev/null
@@ -1,25 +0,0 @@
---- auto.C 2011-07-10 00:23:59.000000000 -0600
-+++ auto.C 2018-02-02 12:19:55.618524000 -0700
-@@ -146,7 +146,6 @@
- }
-
- int HashList::Add(const Hash& h) {
-- if (!this) Error("Add to NULL HashList.");
- if (HashVal().EmptyP()) hash = h;
- else next = new HashList(h, next);
- return depth++;
-@@ -486,12 +485,10 @@
-
- class MoveCard : public Move {
- Card& from;
-- MoveCardToMemberFunction mcmf;
- public:
-- MoveCard(Card& f, Dest& d, MoveCardToMemberFunction mf)
-- : Move(d), from(f), mcmf(mf) { }
-+ MoveCard(Card& f, Dest& d)
-+ : Move(d), from(f) { }
- void DoIt() { dest.MoveTo(from); }
--// void DoIt() { dest.*mcmf(from); }
- };
-
- class MoveCardRange : public Move {