Fix compiler error.

This commit is contained in:
lotodore
2008-12-20 20:16:26 +00:00
parent e7a63b1a99
commit 4f78b32f9d
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -641,8 +641,8 @@ vector< vector<int> > CardsValue::calcCardsChance(GameState beRoID, int* playerC
return chance; return chance;
} }
int** CardsValue::showdown(GameState beRoID, int** playerCards, int playerCount) { //int** CardsValue::showdown(GameState beRoID, int** playerCards, int playerCount) {
//
// int i,j; // int i,j;
// //
// int** chance = new int*[2]; // int** chance = new int*[2];
@@ -657,5 +657,5 @@ int** CardsValue::showdown(GameState beRoID, int** playerCards, int playerCount)
// int rand[5]; // int rand[5];
// //
// return chance; // return chance;
//
} //}
+1 -1
View File
@@ -41,7 +41,7 @@ public:
int* intCodeToHoleCards(int); int* intCodeToHoleCards(int);
std::vector< std::vector<int> > calcCardsChance(GameState, int*, int*); std::vector< std::vector<int> > calcCardsChance(GameState, int*, int*);
int** showdown(GameState, int**, int); //int** showdown(GameState, int**, int);
}; };