Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/games/CaribbeanStud/files/patch-Card.h
16461 views
1
--- ./Card.h.orig 2013-10-29 15:12:13.000000000 -0200
2
+++ ./Card.h 2013-10-29 15:12:13.000000000 -0200
3
@@ -59,7 +59,7 @@
4
5
// Class Card
6
7
-inline Card::operator==(const Card &right) const
8
+inline int Card::operator==(const Card &right) const
9
{
10
return ( _suit == right._suit &&
11
(_rank == right._rank ||
12
@@ -69,7 +69,7 @@
13
);
14
}
15
16
-inline Card::operator!=(const Card &right) const
17
+inline int Card::operator!=(const Card &right) const
18
{
19
return !( operator == (right) );
20
}
21
22