diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-15 00:44:03 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-15 00:44:03 -0500 |
commit | b83f6f255a3205bf8f99f8f1391aa0856c8aafb6 (patch) | |
tree | b8353be1d1f548b051940541e833d45c49baadd4 /vecteur.cpp | |
parent | 6a20ac2049d7e9fbf827838259911bf0899f46d9 (diff) |
small optimisations
Diffstat (limited to 'vecteur.cpp')
-rw-r--r-- | vecteur.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vecteur.cpp b/vecteur.cpp index 56b59ed..fdb153f 100644 --- a/vecteur.cpp +++ b/vecteur.cpp @@ -34,6 +34,7 @@ void Vecteur::afficher(ostream &s){ }; bool Vecteur::ajouterForme(Forme *f) { + if (f == NULL) return false; if (taille == capacite) { // Double the size of the array int newCapacite = capacite * 2; |