From 7ad0f154d2afa805674532a566e72073faa8af34 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 28 Oct 2023 12:09:52 +0200 Subject: [PATCH] reverse init! --- includes/Projet.hpp | 8 ++++---- src/Projet.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/Projet.hpp b/includes/Projet.hpp index a0ed0c7..1d4d801 100644 --- a/includes/Projet.hpp +++ b/includes/Projet.hpp @@ -23,11 +23,11 @@ class Projet { protected: Tache - // Première tâche qui sera exécutée - *debut, - // Source du graphe aka la dernière à être exécutée - *fin; + *fin, + + // Première tâche qui sera exécutée + *debut; Projet(); // constructor virtual ~Projet(); // destructor diff --git a/src/Projet.cpp b/src/Projet.cpp index 1daf917..91f3075 100644 --- a/src/Projet.cpp +++ b/src/Projet.cpp @@ -1,6 +1,6 @@ #include "../includes/Projet.hpp" -Projet::Projet() : debut(new Tache("Début", 0)), fin(new Tache("Fin", 0)) { +Projet::Projet() : fin(new Tache("Fin", 0)), debut(new Tache("Début", 0)) { fin->ajouteDependance(*debut); taches.push_back(fin);