forked from lix-project/lix
Default arguments belong at declaration, not definition
This commit is contained in:
parent
9b4cd20752
commit
1d3529e93a
|
@ -628,7 +628,7 @@ void AutoDelete::cancel()
|
||||||
del = false;
|
del = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AutoDelete::reset(const Path & p, bool recursive = true) {
|
void AutoDelete::reset(const Path & p, bool recursive) {
|
||||||
path = p;
|
path = p;
|
||||||
this->recursive = recursive;
|
this->recursive = recursive;
|
||||||
del = true;
|
del = true;
|
||||||
|
|
Loading…
Reference in a new issue