summaryrefslogtreecommitdiff
path: root/vecteur.cpp
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-15 00:44:03 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-15 00:44:03 -0500
commitb83f6f255a3205bf8f99f8f1391aa0856c8aafb6 (patch)
treeb8353be1d1f548b051940541e833d45c49baadd4 /vecteur.cpp
parent6a20ac2049d7e9fbf827838259911bf0899f46d9 (diff)
small optimisations
Diffstat (limited to 'vecteur.cpp')
-rw-r--r--vecteur.cpp1
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;