Remove all warnings from source code

This commit is contained in:
Loic Guegan 2023-05-10 10:49:31 +02:00
parent ff671f2171
commit a9b9ed95f3
31 changed files with 72 additions and 48 deletions

View file

@ -11,12 +11,12 @@
*/
class Game {
/// @brief 64 char string that contains all the pieces on the board (used in BoardCanvas)
HalfMove *current;
HalfMove *moves;
std::string board;
std::string initial_fen;
std::string result;
std::unordered_map<std::string, std::string> tags;
HalfMove *moves;
HalfMove *current;
/// @brief Used by various methods of the class
chessarbiter::ChessArbiter arbiter;