aboutsummaryrefslogtreecommitdiff
path: root/games/CaribbeanStud/files/patch-Card.h
diff options
context:
space:
mode:
Diffstat (limited to 'games/CaribbeanStud/files/patch-Card.h')
-rw-r--r--games/CaribbeanStud/files/patch-Card.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/games/CaribbeanStud/files/patch-Card.h b/games/CaribbeanStud/files/patch-Card.h
new file mode 100644
index 000000000000..664aaa2c8e75
--- /dev/null
+++ b/games/CaribbeanStud/files/patch-Card.h
@@ -0,0 +1,20 @@
+--- Card.h.orig Tue Aug 19 11:57:32 2003
++++ Card.h Tue Aug 19 11:58:21 2003
+@@ -59,7 +59,7 @@
+
+ // Class Card
+
+-inline Card::operator==(const Card &right) const
++inline int Card::operator==(const Card &right) const
+ {
+ return ( _suit == right._suit &&
+ (_rank == right._rank ||
+@@ -69,7 +69,7 @@
+ );
+ }
+
+-inline Card::operator!=(const Card &right) const
++inline int Card::operator!=(const Card &right) const
+ {
+ return !( operator == (right) );
+ }