branch2.cpp

This commit is contained in:
Antonio SJ Musumeci
2024-02-07 20:55:13 -06:00
parent 885a303f2a
commit deb09d9ec4
+4 -4
View File
@@ -61,11 +61,11 @@ Branch2::~Branch2()
Branch2&
Branch2::operator=(Branch2 const &b_)
{
enabled = b_.enabled;
mode = b_.mode;
enabled = b_.enabled;
mode = b_.mode;
min_free_space = b_.min_free_space;
path = b_.path;
fd = b_.fd;
path = b_.path;
fd = b_.fd;
return *this;
}