summaryrefslogtreecommitdiff
path: root/vecteur.cpp
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 03:26:28 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 03:26:28 -0500
commit20ae6ae3f82a4eeeb123d9c1f895f10c8967f44b (patch)
treeda18c55250fb9f544b5b67aacc1a3fab4a7ccf75 /vecteur.cpp
parent267868847b0885f60aaae43afd4f54ce028181d8 (diff)
parent5f8fa959dab1106105f9e58325f65d0b51bb1631 (diff)
Merge branch 'development'
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;