freebsd-ports/games/CaribbeanStud/files/patch-Card.h
Danilo Egea Gondolfo c65da11422 - Remove extra tabs
- Add stage support
- Fix build
- Add DOCS option
2013-10-29 18:00:51 +00:00

20 lines
491 B
C

--- ./Card.h.orig 2013-10-29 15:12:13.000000000 -0200
+++ ./Card.h 2013-10-29 15:12:13.000000000 -0200
@@ -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) );
}