Skip to content
Snippets Groups Projects
Commit bee57832 authored by aurora's avatar aurora
Browse files

fix: change arrays to vectors

parent 1cde2318
Branches
No related tags found
No related merge requests found
......@@ -38,9 +38,9 @@ public:
class Tournament {
private:
int tableNr[gTables]; //these will only work if gTables is a const?
string player1[gTables],
player2[gTables];
vector <int *> tableNr;
vector <string *> player1;
vector <string *> player2;
public:
void writeTournament();
void fillTableArray();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment