From 62b023792b5192732b8aa6760979f8bcd527cd0b Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 14 Dec 2023 14:55:55 +0100 Subject: [PATCH] warnings --- src/Plateau.cpp | 2 +- src/PlateauButin.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Plateau.cpp b/src/Plateau.cpp index f6ba726..41c8000 100644 --- a/src/Plateau.cpp +++ b/src/Plateau.cpp @@ -2,7 +2,7 @@ #include "../includes/Ecran.hpp" #include "../includes/PieceDames.hpp" -Plateau::Plateau(int t) : taille(t), plateau(new Piece **[t]) { +Plateau::Plateau(int t) : plateau(new Piece **[t]), taille(t) { // Création du plateau vide for (int i = 0; i < t; i++) { plateau[i] = new Piece *[t]; diff --git a/src/PlateauButin.cpp b/src/PlateauButin.cpp index c176dbd..13554b4 100644 --- a/src/PlateauButin.cpp +++ b/src/PlateauButin.cpp @@ -10,7 +10,7 @@ PlateauButin::~PlateauButin() {} // On utilise pas les arguments ici, à voir si il faut vraiment faire un // override -void PlateauButin::initialiserPlateau(Joueur &_j1, Joueur &_j2) { +void PlateauButin::initialiserPlateau(Joueur &j1, Joueur &j2) { // Vecteur de toutes les pièeces du jeu std::vector pieces; for (int i = 0; i < 34; i++) { @@ -33,7 +33,7 @@ void PlateauButin::initialiserPlateau(Joueur &_j1, Joueur &_j2) { int index = 0; for (int i = 0; i < taille; i++) { for (int j = 0; j < taille; j++) { - plateau[i][j] = &pieces[index++]; + plateau[i][j] = &pieces[static_cast(index++)]; } } }