-Wreorder
This commit is contained in:
parent
7ad0f154d2
commit
470aa9a45c
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ void Projet::_copy(const Projet &src) {
|
|||
|
||||
void Projet::free_taches() { taches.clear(); }
|
||||
|
||||
Projet::Projet(const Projet &src) : debut(src.debut), fin(src.fin) {
|
||||
Projet::Projet(const Projet &src) : fin(src.fin), debut(src.debut) {
|
||||
_copy(src);
|
||||
}
|
||||
|
||||
|
@ -27,8 +27,8 @@ const Projet &Projet::operator=(const Projet &src) {
|
|||
if (this == &src) {
|
||||
return *this;
|
||||
}
|
||||
debut = src.debut;
|
||||
fin = src.fin;
|
||||
debut = src.debut;
|
||||
free_taches();
|
||||
_copy(src);
|
||||
return *this;
|
||||
|
|
Reference in a new issue