From 90ed0e460452c2c39d62b889d8609ae8467cc42d Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 2 Apr 2022 17:07:01 +0200 Subject: [PATCH] clear du vecteur inutile --- univers.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/univers.cpp b/univers.cpp index f18b830..78dc079 100644 --- a/univers.cpp +++ b/univers.cpp @@ -22,7 +22,6 @@ Univers::Univers(int m, int n): _m(m), _n(n), _tailleUnivers(m * n), _tour(0), _ Univers::~Univers(void) { delete[] _plateau; - indexLibres.clear(); } void Univers::ajoutAnimaux(std::vector animaux) { @@ -103,6 +102,9 @@ Animal::Animal(void): Organisme() { } +Animal::~Animal(void) { + +} // -------- Herbe -------- @@ -132,6 +134,10 @@ Mouton::Mouton(void): Animal() { } +Mouton::~Mouton(void) { + +} + bool Mouton::carnivore(void) const noexcept { return false; } @@ -147,6 +153,10 @@ Loup::Loup(void): Animal() { } +Loup::~Loup(void) { + +} + bool Loup::carnivore(void) const noexcept { return false; }